What is the size of enum in bytes?
What is a global variable in c?
In a header file whether functions are declared or defined?
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
Do character constants represent numerical values?
What is array in C
Are there any problems with performing mathematical operations on different variable types?
What is structure packing ?
Write a C program to find the smallest of three integers, without using any of the comparision operators.
If I have a char * variable pointing to the name of a function ..
What’s the special use of UNIONS?