How was c created?
No Answer is Posted For this Question
Be the First to Post Answer
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is a class?
What is void pointers 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 are the stoge class in C and tel the scope and life time of it?
difference between object file and executable file
Explain c preprocessor?
Explain the difference between malloc() and calloc() in c?
Are the expressions * ptr ++ and ++ * ptr same?
How can I make sure that my program is the only one accessing a file?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
how to swap two nubers by using a function with pointers?