How do you do dynamic memory allocation in C applications?
No Answer is Posted For this Question
Be the First to Post Answer
what does data structure mean?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
What are comments and how do you insert it in a C program?
What is a 'null pointer assignment' error?
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
Explain what are multidimensional arrays?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
difference between the array and linked list general difference related to memory
Tell us something about keyword 'auto'.
Explain following declaration int *P(void); and int (*p)(char *a);
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
What does typedef struct mean?