What library is sizeof in c?


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

Post New Answer

More C Interview Questions

name the language for writing c compiler?

3 Answers   Microsoft,


What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }

7 Answers  


What is the correct declaration of main?

0 Answers  


find the minimum of three values inputted by the user

3 Answers  


write a program which will count occurance of a day between two dates.

1 Answers   IonIdea,






What is the purpose of the statement: strcat (S2, S1)?

0 Answers  


How can I get the current date or time of day in a c program?

0 Answers  


Why we use stdio h in c?

0 Answers  


how to swap 4 number without using temporary number?

2 Answers  


totally how much header files r in c language

8 Answers   TCS,


fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }

17 Answers   NDS,


There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?

5 Answers   Microsoft, TCS,


Categories