Explain modulus operator.
What is the benefit of using an enum rather than a #define constant?
What is a buffer in c?
What is volatile variable in c?
what is the difference b/w compiler and debugger?
What is malloc and calloc?
What are the types of type specifiers?
Can we declare function inside main?
What is a pointer and how it is initialized?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Where local variables are stored in c?
What is this pointer in c plus plus?
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above