What does printf does?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of constants?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
Where local variables are stored in c?
What is optimization in c?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?
Can you mix old-style and new-style function syntax?
hi, which software companys will take,if d candidate's % is jst 55%?
how would a 4*3 array A[4][3] stored in Row Major Order?
why programming language C is still used in operating system's kernel??
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }