What is null in c?
No Answer is Posted For this Question
Be the First to Post Answer
why do we use # in c-language?
What is pointers in c?
What is c programing language?
How do you determine whether to use a stream function or a low-level function?
write a program to create a sparse matrix using dynamic memory allocation.
What is a newline escape sequence?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
What are the advantages of c preprocessor?
Where in memory are my variables stored?
Explain what happens if you free a pointer twice?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none