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 |
Hai why 'c' is the middle language
What is bss in c?
How will you allocate memory to double a pointer?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
What is c variable?
Why ordinary variable store only one value
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
related to rdbms query .
C language questions for civil engineering
How can I set an array's size at run time?