R
Q. What is the output of C Program with pointers?
int main() { int a=20; int *p, *q; p=&a; q=p; printf("%d ", a); *p=30; printf("%d ", a); *q=40; 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 will be the output of following program ?
Q. What will be the output of the following statement ?
Q. Which of the following ways are correct to include header file in C program?
Q. What will be printed by the C program?
Q. Which for loop has range of similar indexes of ‘i’ used in for (i = 0;i < n; i++)?
Q. How to declare a double-pointer in C?
Q. Which of the following is NOT possible with any 2 operators in C?
Q. Which of the following is the correct output for the program given below?
Discusssion
Login to discuss.