Why does the call char scanf work?
No Answer is Posted For this Question
Be the First to Post Answer
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
const char * char * const What is the differnce between the above tow?.
Ow can I insert or delete a line (or record) in the middle of a file?
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
What is the meaning When we write "#include" what is # and what does include does there???
What are qualifiers in c?
Do you have any idea about the use of "auto" keyword?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is the scope of static variables in c language?
Explain the difference between exit() and _exit() function?
Write a program to print fibonacci series using recursion?