What is the use of pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to know whether the input number is an armstrong number.
How the C program can be compiled?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Why use int main instead of void main?
How can I find the modification date and time of a file?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is page thrashing?
what are the advantages & disadvantages of unions?
in which language c language is written?
How can I manipulate individual bits?