Explain the properties of union. What is the size of a union variable


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

Post New Answer

More C Interview Questions

What is a stream?

0 Answers  


main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }

4 Answers  


writw a program to insert an element in the begning of a doubly linked list

1 Answers  


What are identifiers in c?

0 Answers  


can any one provide me the notes of data structure for ignou cs-62 paper

0 Answers   Ignou,






IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.

5 Answers   TCS,


What is call by value in c?

0 Answers  


what is constant pointer?

3 Answers  


main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }

9 Answers   TCS,


Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;

5 Answers   Accenture, TCS,


Write a program which returns the first non repetitive character in the string?

0 Answers   Expedia,


Differentiate between ordinary variable and pointer in c.

0 Answers  


Categories