#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
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is operator promotion?
please send me the code for multiplying sparse matrix using c
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Why do we use stdio h and conio h?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
How can I find the modification date and time of a file?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Can we increase size of array in c?
Why void main is used in c?
How are portions of a program disabled in demo versions?
What does sizeof function do?
I need previous papers of CSC.......plz help out by posting them.......
What is indirection? How many levels of pointers can you have?