Does c have class?


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

Post New Answer

More C Interview Questions

program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

0 Answers  


Name the language in which the compiler of "c" in written?

3 Answers   Bajaj,


main() { int i; printf("%d",i^i); }

1 Answers  


wtite a program that will multiply two integers in recursion function

4 Answers   TCS,


What is the difference between struct and union in C?

1 Answers  






what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }

6 Answers   IBM,


what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }

14 Answers  


What are pointers? What are different types of pointers?

0 Answers   Fidelity,


What is the difference between a free-standing and a hosted environment?

0 Answers   Aspire,


When should you not use a type cast?

0 Answers  


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


p*=(++q)++*--p when p=q=1 while(q<=6)

0 Answers   KINPOE,


Categories