What is the meaning of this decleration?
unsigned char (*pArray[10][10]);
please reply.
Answer / debaprasad.pal
the brackets are there to confuse. it is a two dimensional
array of uchar.
| Is This Answer Correct ? | 3 Yes | 0 No |
What is pointers in c with example?
Where we use clrscr in c?
What is getche() function?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
Can you please explain the difference between exit() and _exit() function?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
What does *p++ do?
What is a program flowchart?
Tell me with an example the self-referential structure?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
what is answer for perfect number????????????????