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. #include <stdio.h> int main() { int x[5] = { 10, 20, 30 }; printf("%d", x[-1]); return 0; }
Q. which of the following is not a storage class specifier?
Q. Which is not a valid C variable name?
Q. Choose correct statement about Left Shift Operator << ?
Q. What is the output of C Program with functions and pointers.?
Q. What is actually passed to PRINTF or SCANF functions?
Q. You can access elements of an array by ___.
Q. What is the output of this program?
Q. Which is/are the correct syntax to initialize an array in C?
Discusssion
Login to discuss.