What is difference between structure and union with example?
No Answer is Posted For this Question
Be the First to Post Answer
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
what is array?
how can f be used for both float and double arguments in printf? Are not they different types?
disadvantages of realloc ?
What does c mean?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is %d called in c?
What functions are used for dynamic memory allocation in c language?
Write a program in c using only loops to print * * * * * *******
What does a function declared as pascal do differently?
what is the associativity of bitwise OR operator?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.