#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 the “if” function be used in comparing strings?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Is there any possibility to create customized header file with c programming language?
What do you know about the use of bit field?
Why is c called c?
What is the purpose of 'register' keyword?
code for replace tabs with equivalent number of blanks
Does c have an equivalent to pascals with statement?
Explain how can you tell whether a program was compiled using c versus c++?
Do you know the difference between exit() and _exit() function in c?
What is variable in c example?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What will be your course of action for a push operation?
Differentiate call by value and call by reference?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values