-
Find the binary form
Write a program to find the binary form for the given charcter input.eg:- for 'A' ASCII value is 65 and its binary form is 1000001.
-
What is result for of this C Code block?
what is the result
main()
{
int x=15;
printf("%d %d %d",x!=15,X=20,X -
-
-
-
C Program for pyramid
What will be the code in c to get the following output?A B C D E F G F E D C B AA B C D E F F E D C B AA B C D E E D C B AA B C D D C B AA B C C B AA B B AA A
Accenture C Interview Questions
Study the Following Points:a.One Cannot Take the address of a Bit Fieldb.bit fields cannot be arrayedc.Bit-Fields are machine Dependantd.Bit-fields cannot be declared as staticWhich of the Following Statements are true w.r.t Bit-FieldsA)a,b&c B)Only a & b C)Only c D)All2.What is the function of ceil(X) defined in math.h do?A)It returns the value rounded down to the next lower...
What would be the output of the following program? main() { const int x=5; int *ptrx; ptrx=&x; *ptrx=10; printf("%d",x); }
A) 5B) 10C) ErrorD) Garbage Value
Difference b/w a[i] and i[a]
Is there any relation between a[i] and i[a] while using arrays..can anyone help me with this....
Ans