What is a floating point in c?
No Answer is Posted For this Question
Be the First to Post Answer
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
How is a null pointer different from a dangling pointer?
What is 'bus error'?
how the compiler treats any volatile variable?Explain with example.
Why is #define used?
c program for searching a student details among 10 student details
How can I direct output to the printer?
writw a program to insert an element in the begning of a doubly linked list
Why doesn't C support function overloading?
What is the difference between macros and inline functions?
How can I determine whether a machines byte order is big-endian or little-endian?
What are the advantages of c language?