answersLogoWhite

0

This is a Ditloid.

The answer is 0 (zero) Sides on a Circle.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What does 0 c in w mean?

0 calories in water


What does c slash s on a legal document mean?

/s/


What does comparison property of inequality mean?

for example if a=b+c and c>0, then a>b


Square root of 8-c equals c-8?

16


What is VHDL program for halfadder in behavioral model?

library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity ha is Port ( a : in STD_LOGIC; b : in STD_LOGIC; s : out STD_LOGIC; c : out STD_LOGIC); end ha; architecture Behavioral of ha is signal sel:std_logic_vector(1 downto 0); begin process(a,b) begin sel(1)<=a; sel(0)<=b; case sel is when "00"=> s<='0';c<='0'; when "01"=> s<='1';c<='0'; when "10"=> s<='1';c<='0'; when "11"=> s<='0';c<='1'; when others=> null; end case; end process ; end Behavioral;


Does NOR gate obey associative law?

Presumably you mean is it true that: ( A nor B ) nor C == A nor ( B nor C ) ? No. Let's make a table: A B C (A nor B) (B nor C) [ (A nor B ) nor C ] [ A nor ( B nor C ) ] 0 0 0 1 1 0 0 0 0 1 1 0 0 1 .... So you see right away for A=0, B=0, and C=1 it doesn't work.


What does 0 degrees c and 0 c mean?

'''maybe it means it's really cold. sorry i don't really know hope that answer helps you.'''


What is the name of An equation of the form ax2 bx c 0?

If you mean: ax2+bx+c = 0 then it's the general form of a quadratic equation


How does Dougie Maclean tune his guitar on Caledonia?

Tuning CGCGCE Capo 4th fret Intro listen to it carefully fairly easy to work out basically ist string 5 and 3rd fret pull off and hammer on 2nd string 2nd and 4th frets For the verses and chorus use the following "chords" E- C-0 G-0 C-0 G-5 (s) C- E- C-0 G-0 C-5 G-7 C- E- C-0 G-0 C-7 G-9 C- E- C-0 G-0 C-9 G-10 C- Repeat Then chorus E- C-0 G-0 C-0 G-5 C- E- C-0 G-2 C-0 G-2 C- E- C-0 G-0 C-0 G-5 C- I haven't got my guitar here but I think it is one of the two annotated below E- C0 G0 C2 G- C5 E- C-0 G-0 C-5 G- C-5 E- C-0 G-2 C-0 G-2 C- E- C-0 G-0 C-0 G-5 C-


What is the C program to print strings from A to Z and a to z?

#include<stdio.h> int main (void) { char upper[27]; // A-Z plus null terminator char lower[27]; // a-z plus null terminator char c; int i; for (i = 0, c = 'A'; c <= 'Z'; ++c, ++i) { upper[i] = c; lower[i] = c - 'A' + 'a'; } upper[i] = 0; // null-terminator lower[i] = 0; // null-terminator printf ("%s\n", upper); printf ("%s\n", lower); return 0; }


What does SS mean engraved on silver?

I have a pair of frog earings with the s/s and circled c on it ehat does it mean.


How do you write c program to identify keywords using transition table?

#include#include#includevoid keyw(char str[10]){if(strcmp("for",str)==0)printf("%s is a keyword",str);else if(strcmp("while",str)==0)printf("%s is a keyword",str);else if(strcmp("char",str)==0)printf("%s is a keyword",str);else if(strcmp("int",str)==0)printf("%s is a keyword",str);else if(strcmp("if",str)==0)printf("%s is a keyword",str);else if(strcmp("else",str)==0)printf("%s is a keyword",str);elseprintf("%s is an identifier",str);printf("\n");}main(){FILE *f1,*f2,*f3;char c,str[10];int num[100],ln=0,tvalue=0,i=0,j=0,k=0;printf("Enter a C program expression");f1=fopen("input.c","w");while((c=getchar())!=EOF)fputc(c,f1);f1=fopen("input.c","r");f2=fopen("identifier.txt","w");f3=fopen("specialchars.txt","w");while((c=fgetc(f1))!=EOF){if(isdigit(c)){tvalue=c-'0';c=fgetc(f1);while(isdigit(c)){tvalue=tvalue*10+c-'0';c=fgetc(f1);}num[i++]=tvalue;ungetc(c,f1);}else if(isalpha(c)){fputc(c,f2);c=fgetc(f1);while((isdigit(c))isalpha(c)c==' 'c=='$'){fputc(c,f2);c=fgetc(f1);}fputc(' ',f2);ungetc(c,f1);}else if(c==' 'c=='\t');else if(c=='\n')ln++;elsefputc(c,f3);}fclose(f1);fclose(f2);fclose(f3);printf("Numbers in the program are \n");for(j=0;j