#include<stdio.h>
#include<conio.h>
int main()
{
int a[4][4]={{5,7,5,9},
{4,6,3,1},
{2,9,0,6}};
int *p;
int (*q)[4];
p=(int*)a;
q=a;
printf("\n%u%u",p,q);
p++;
q++;
printf("\n%u%u",p,q);
getch();
return 0;
}
what is the meaning of this program?
Answer Posted / ajinkya
void main{int a=1;while(a++<=1)while(a++>2);}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of printf() and scanf() functions?
Is c pass by value or reference?
Explain can you assign a different address to an array tag?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What are the general description for loop statement and available loop types in c?
What are shell structures used for?
What does the error message "DGROUP exceeds 64K" mean?
How to throw some light on the b tree?
how to create duplicate link list using C???
What is a char c?
Apart from dennis ritchie who the other person who contributed in design of c language.
Explain what is operator promotion?
Explain 'far' and 'near' pointers in c.
Function calling procedures? and their differences? Why should one go for Call by Reference?