What is the size of enum in bytes?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is a global variable in c?

0 Answers  


In a header file whether functions are declared or defined?

0 Answers   TISL,


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.

0 Answers  


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

0 Answers   IBM,


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

7 Answers   TCS,


Do character constants represent numerical values?

0 Answers  


What is array in C

0 Answers  


Are there any problems with performing mathematical operations on different variable types?

0 Answers  


What is structure packing ?

2 Answers   HP,


Write a C program to find the smallest of three integers, without using any of the comparision operators.

7 Answers   TCS,


If I have a char * variable pointing to the name of a function ..

0 Answers  


What’s the special use of UNIONS?

0 Answers   ADP,


Categories