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 data type long in c?
List a few unconditional control statement in c.
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
When is the “void” keyword used in a function?
Is printf a keyword?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is the use of the function in c?
Write a program to print prime nums from 1-20 using c programing?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
Why main is used in c?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.