What is pointer to pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
How to write a C program to determine the smallest among three nos using conditional operator?
What is the maximum no. of arguments that can be given in a command line in C.?
Can we declare variables anywhere in c?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Explain what is the purpose of "extern" keyword in a function declaration?
How to get string length of given string in c?
how can use subset in c program and give more example
Why main function is special give two reasons?
Why c is called free form language?
Write a program in c using only loops to print * * * * * *******
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer