1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 20923What is the output of the program
#include
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
1 5352
List the difference between a "copy constructor" and a "assignment operator"?
Why do we use header files in c?
What is difference between array and pointer in c?
What is n in c?
What are the 4 data types?
How do you use a pointer to a function?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Explain what is a static function?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
How does sizeof know array size?
In C language what is a 'dangling pointer'?
What are identifiers c?
What type is sizeof?
What is c language & why it is used?
any "C" function by default returns an a) int value b) float value c) char value d) a & b