R
Q. What is the output of C Program with functions and pointers.?
int main() { int b=25; //b memory location=1234; int *p; p=&b; printf("%d %d %d", &b, p); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Every C Program should contain which function?
Q. What is the output of C program with strings?
Q. What is the output of this program?
Q. What is the output of C program?
Q. What is true about strftime function?
Q. What is the output of C Program?
Q. How many times do we get through the following loop?
Q. Choose a correct statement about C file operation program?
Q. Which of the following cannot be checked in a 'switch-case' statement?
Discusssion
Login to discuss.