What are unions in c?


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

Post New Answer

More C Interview Questions

Why is void main used?

0 Answers  


when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none

7 Answers   HCL,


#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 programme to find even numbers without using any conditional statement?

3 Answers   ADD Software, Infosys,


What is wild pointer in c with example?

0 Answers  






How to print India by nested loop? I IN IND INDI INDIA

4 Answers   NIIT, Wipro,


Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?

1 Answers   Infosys,


What is period operator in c?

3 Answers   Wipro,


what is the use of ‘auto’ keyword?

1 Answers  


How can I make it pause before closing the program output window?

0 Answers  


What is c token?

0 Answers  


what is the difference between structure and union?

3 Answers  


Categories