What is define c?
No Answer is Posted For this Question
Be the First to Post Answer
Where local variables are stored in c?
how to use showbits function?
When should you use a type cast?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
convert 0.9375 to binary
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is the process to generate random numbers in c programming language?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
can anyone suggest some site name..where i can get some good data structure puzzles???
How to write a multi-statement macro?
Why pointers are used in c?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV