#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What are the functions to open and close the file in c language?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What are derived data types in c?
What is a program?
Explain what standard functions are available to manipulate strings?
What does struct node * mean?
What are keywords c?
What is the easiest sorting method to use?
difference between object file and executable file
What are integer variable, floating-point variable and character variable?
The difference between printf and fprintf is ?
What is the scope of global variable in c?
What is pointer and structure in c?
Write a program to generate the Fibinocci Series