What does sizeof int return?


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

Post New Answer

More C Interview Questions

#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


Write a C program to convert an integer into a binary string?

1 Answers  


Where does the name "C" come from, anyway?

0 Answers   Celstream,


How can I find out the size of a file, prior to reading it in?

0 Answers  


What is the difference between pure virtual function and virtual function?

0 Answers  






What are bitwise shift operators in c programming?

0 Answers  


What is the relation between # and include<stdio.h>

5 Answers   HCL,


the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }

4 Answers   CMC, TCS,


Can we write a program without main() function?

9 Answers  


What is the difference function call by value & function call by reference?

6 Answers  


#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }

3 Answers   ADITI,


What does %2f mean in c?

0 Answers  


Categories