What is build process in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is diffrence between string and character array?
What is the difference between getch() and getche()?
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,
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
what is inline function?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
How can I open files mentioned on the command line, and parse option flags?
how to find the largest element of array without using relational operater?
What is realloc in c?
Can you please explain the difference between syntax vs logical error?
What is the explanation for prototype function in c?