Which of the following jump statements in C are correct?
What is the output of the following C program?
How to dynamically allocate a 2D array in C?
Which is correct with respect to the size of the data types?
What is the other name for compile-time polymorphism?
When we can have more than one version of the same function, it is called:
Let x be an integer which can take a value of 0 or 1. The statement if(x == 0) x = 1; else x = 0; is equivalent to which one of the following?
Which of the following statements are correct?
Suppose that in a C program snippet, the following statements are used:
i) sizeof(int);
ii) sizeof(int*);
iii) sizeof(int**);
Assuming the size of a pointer is 4 bytes and the size of an int is also 4 bytes, pick the most correct answer from the given options.