What is the meaning of this decleration?
unsigned char (*pArray[10][10]);
please reply.
Answer Posted / debaprasad.pal
the brackets are there to confuse. it is a two dimensional
array of uchar.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Ow can I insert or delete a line (or record) in the middle of a file?
How can I read data from data files with particular formats?
How can you draw circles in C?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Can include files be nested? How many levels deep can include files be nested?
What do you mean by Recursion Function?
How can a process change an environment variable in its caller?
Tell us the use of fflush() function in c language?
How can I change the size of the dynamically allocated array?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How do I send escape sequences to control a terminal or other device?
Why is main function so important?
Explain pointers in c programming?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
ATM machine and railway reservation class/object diagram