What is pointer to pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
how can use subset in c program and give more example
What does *p++ do?
What is a null pointer in c?
What is the difference b/w Structure & Array?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
how to find binary of number?
What is the size of enum in c?
What type is sizeof?
main() { clrscr(); } clrscr();
What does c mean in basketball?
What does double pointer mean in c?