What is realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are macros in C?
in which language c language is written?
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
What are examples of structures?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
What is sparse file?
Why do we need arrays in c?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
Does c have function or method?
without a terminator how can we print a message in a printf () function.