What are the disadvantages of c language?
No Answer is Posted For this Question
Be the First to Post Answer
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
what is diference between return 0 and return NULL??
what type of questions arrive in interview over c programming?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
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,
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
how to TOGGLE Nth bit of variable in a MACRO
What was noalias and what ever happened to it?
Write a program in c using only loops to print * * * * * *******
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Explain can the sizeof operator be used to tell the size of an array passed to a function?