Is null valid for pointers to functions?
No Answer is Posted For this Question
Be the First to Post Answer
List some basic data types in c?
What is pointer and structure in c?
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..
Write any data structure program (stack implementation)
What are global variables and explain how do you declare them?
Explain how do you view the path?
What is a lookup table in c?
Why is #define used?
What is 2 d array in c?
How many levels of pointers have?
simple program for virtual function?
write a program in c language to print your bio-data on the screen by using functions.