What does c mean in standard form?
No Answer is Posted For this Question
Be the First to Post Answer
how the compiler treats any volatile variable?Explain with example.
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
Diff between for loop and while loop?
How do I determine whether a character is numeric, alphabetic, and so on?
Can you think of a logic behind the game minesweeper.
Why main is used in c?
What is a pointer variable in c language?
What is a Genralised LInked List?? Please give a detailed explation of it..
Reverse a string word by word??
Explain what are global variables and explain how do you declare them?
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..
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }