What is c language & why it is used?
No Answer is Posted For this Question
Be the First to Post Answer
Are comments included during the compilation stage and placed in the EXE file as well?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
How do you initialize pointer variables?
What’s the special use of UNIONS?
What is wrong with this declaration?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
What is the difference between null pointer and the void pointer?
in malloc and calloc which one is fast and why?
write a program for the normal snake games find in most of the mobiles.
What is wrong with this code?
How to write a multi-statement macro?
What are the 4 data types?