Explain what is the difference between a free-standing and a hosted environment?
No Answer is Posted For this Question
Be the First to Post Answer
all c language question
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
What is the right type to use for boolean values in c?
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,
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
Eight queens puzzle
Why c is known as a mother language?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
Explain what is the use of a semicolon (;) at the end of every program statement?
How to write a code for reverse of string without using string functions?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What is the use of the sizeof operator?