#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
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
How can I find out how much free space is available on disk?
What is an operator?
What are preprocessor directives in c?
Differentiate between a for loop and a while loop? What are it uses?
What is array in C
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain what is the use of a semicolon (;) at the end of every program statement?
What is structure padding in c?
Can an array be an Ivalue?
How arrays can be passed to a user defined function
What is c programming structure?
Tell me what are bitwise shift operators?
How do you determine the length of a string value that was stored in a variable?
how do you execute a c program in unix.