R
Q. What is the output of C Program with pointers?
int main() { int a=10; int *p, **q; p=&a; q=&p; printf("%d ", a); *p=15; printf("%d ", a); **q=20; printf("%d ", a); 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 the following code snippet?
Q. For 16-bit compiler allowable range for integer constants is ______ ?
Q. After the operation res = (13/5) -2, what will “res” be equal to?
Q. Which type of files can't be opened using fopen()?
Q. When 1 is entered, the output of the code below is?
Q. Which of the following is a Compound assignment operators?
Q. What is the output of the C Program?
Q. What will be output if you will compile and execute the following c code?
Q. Choose a correct statement about C language break; statement.
Discusssion
Login to discuss.