#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
Explain can the sizeof operator be used to tell the size of an array passed to a function?
How to throw some light on the b tree?
Explain what is a static function?
Explain function?
What is pointers in c with example?
How do I send escape sequences to control a terminal or other device?
What are 3 types of structures?
Explain is it valid to address one element beyond the end of an array?
How can you increase the size of a dynamically allocated array?
Is a pointer a kind of array?
What is size of union in c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
how to capitalise first letter of each word in a given string?
What is the newline escape sequence?
Are there namespaces in c?