What is the use of volatile?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between malloc calloc and realloc in c?
Process by which one bit pattern in to another by bit wise operation is?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Explain how do you convert strings to numbers in c?
Can we write a program without main() function?
What is the best way to store flag values in a program?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
Is it possible to pass an entire structure to functions?
What is a newline escape sequence?
What does %c mean in c?
What is the g value paradox?
Differentiate between new and malloc(), delete and free() ?