what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / neelamani
1 NULL pointer assignment
This output in TC compiler
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
Explain how do you use a pointer to a function?
Tell me what is the purpose of 'register' keyword in c language?
what are the different storage classes in c?
Explain the difference between #include "..." And #include <...> In c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What does it mean when a pointer is used in an if statement?
What is floating point constants?
Do pointers store the address of value or the actual value of a variable?
Why is it that not all header files are declared in every C program?
How do you determine whether to use a stream function or a low-level function?
What are the back slash character constants or escape sequence charactersavailable in c?
Explain what standard functions are available to manipulate strings?
Can a pointer be null?
What is the advantage of an array over individual variables?
praagnovation