Explain what are multibyte characters?
No Answer is Posted For this Question
Be the First to Post Answer
main() { float a=3.2e40; printf("%d",a); }
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
Explain what is the difference between a free-standing and a hosted environment?
How can I implement sets or arrays of bits?
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,
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is wrong with this declaration?
What are categories used for in c?
what is purpose of fflush(stdin) function
Why c is called free form language?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What is nested structure with example?