What is pointer to pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you do dynamic memory allocation in C applications?
what is bit rate & baud rate? plz give wave forms
How can I invoke another program or command and trap its output?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
What are local static variables?
How can you tell whether a program was compiled using c versus c++?
How do you define a string?
What are the features of the c language?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
Was 2000 a leap year?
How can you return multiple values from a function?
Can we declare function inside main?