Can I initialize unions?
Answer / Siddharth Chaudhary
Yes, you can initialize unions in C by specifying a value for the first member of the union. The other members will be implicitly initialized based on that.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the advantages and disadvantages of c language?
I heard that you have to include stdio.h before calling printf. Why?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
Explain c preprocessor?
C program to find all possible outcomes of a dice?
What is the difference between functions abs() and fabs()?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
WHAT IS LOW LEVEL LANGUAGE?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?