What is the meaning of this decleration?
unsigned char (*pArray[10][10]);



please reply.



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

Post New Answer

More C Interview Questions

Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)

1 Answers   HTC,


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

0 Answers  


What are pointers?

0 Answers   Accenture, Tavant Technologies, Zensar,


Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

0 Answers  


What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

21 Answers   ADITI, Student, TCS,






what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error

9 Answers   Infosys,


c pgm count no of lines , blanks, tabs in a para(File concept)

2 Answers  


what is call by value and call by reference

4 Answers  


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

0 Answers  


What are different types of variables in c?

0 Answers  


Explain what math functions are available for integers? For floating point?

0 Answers  


write a c program to add two integer numbers without using arithmetic operator +

13 Answers   Value Labs,


Categories