What is difference between union All statement and Union?


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

Post New Answer

More C Interview Questions

In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT

1 Answers   IBM,


Explain what is the difference between text files and binary files?

0 Answers  


Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"

15 Answers   Accenture,


Given an unsigned integer, find if the number is power of 2?

5 Answers  


char ch=10;printf("%d",ch);what is the output

14 Answers   Accenture,






int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?

3 Answers  


What is typeof in c?

0 Answers  


x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????

3 Answers  


write a program to find the frequency of a number

4 Answers   Infosys,


wt is d full form of c

6 Answers   TCS, Wipro,


When a c file is executed there are many files that are automatically opened what are they files?

0 Answers  


char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)

7 Answers   Mascot,


Categories