#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
can anyone please tell about the nested interrupts?
What do you mean by recursion in c?
What does the format %10.2 mean when included in a printf statement?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is the use of clrscr?
why return type of main is not necessary in linux
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What are valid operations on pointers?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is a string?
How can I manipulate individual bits?
Difference between exit() and _exit() function?
Can I initialize unions?
What is the size of enum in bytes?
What are the functions to open and close the file in c language?