R
Q. What is the output of C Program with pointers.?
int main() { int a = 4; int *p; p=&a; while(*p > 0) { printf("%d ", *p); (*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. What is the output of this program?
Q. What will be the output of the following C code? (If the input is "Hello world")
Q. Which of these is an exit-controlled loop?
Q. What is the output of C program with structure arrays?
Q. Right Shift operation >> is equivalent to ?
Q. What is the output of C Program with functions?
Q. Which of the following characters returns the cursor to the left of the screen?
Q. What happens after a return?
Q. Which of the following ways are correct to include header file in C program?
Discusssion
Login to discuss.