int x=sizeof(!5.856);
What will value of variable x?
Answers were Sorted based on User's Feedback
What is the main differences between C and Embedded C?
What is the difference between void main and main in c?
Explain how can I convert a number to a string?
What's wrong with "char *p; *p = malloc(10);"?
What is an expression?
Are there any problems with performing mathematical operations on different variable types?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Differentiate between null and void pointers.
Explain what are the advantages and disadvantages of a heap?
How can I change the size of the dynamically allocated array?
Is main an identifier in c?
What is derived datatype in c?