What is function pointer c?
No Answer is Posted For this Question
Be the First to Post Answer
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
what is a static function
What are # preprocessor operator in c?
Explain how do you print an address?
What is uint8 in c?
What is pointer 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..
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
Can we write a program without main() function?
If we give two names then this displays the connection between the two people. It is nothing but flames game
Explain what are its uses in c programming?
What is NULL pointer?