Answer Posted / nashiinformaticssolutions
The sizeof operator determines the size of a data type or variable in bytes.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do pointers need to be initialized?
What is a method in c?
Explain the difference between ++u and u++?
Is file a keyword in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is meant by errors and debugging?
What is data structure in c language?
Can a pointer be null?
What is pointers in c with example?
State the difference between realloc and free.
Explain high-order and low-order bytes.
If errno contains a nonzero number, is there an error?
What is the purpose of void pointer?
What is a class c rental property?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }