What is the memory allocated by the following definition ?
int (*x)[10];
Answer Posted / chris_sreekanth
20 bytes
| Is This Answer Correct ? | 13 Yes | 16 No |
Post New Answer View All Answers
Explain the array representation of a binary tree in C.
What is the difference between procedural and functional programming?
Why c is known as a mother language?
Explain about block scope in c?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Can we assign integer value to char in c?
How can I list all of the predefined identifiers?
What is the difference between arrays and pointers?
What is function definition in c?
Can you apply link and association interchangeably?
Describe the header file and its usage in c programming?
What is dangling pointer in c?
What is the role of && operator in a program code?
Write a program to print all permutations of a given string.
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?