1.

pointer variable can be assigned the address of another variable. int main() {int num=10;int*ptr;ptr=#return 0;​

Answer»

ANSWER:

#INCLUDE int MAIN() { int num = 10; printf("VALUE of variable num is: %d", num); /* To print the address of a variable we use %p



Discussion

No Comment Found

Related InterviewSolutions