#define MAX(x,y) (x) >(y)?(x):(y)
main()
{
inti=10,j=5,k=0;
k= MAX(i++,++j);
printf("%d..%d..%d",i,j,k);
}
No Answer is Posted For this Question
Be the First to Post Answer
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
What is enumerated data type in c?
What is the difference between pure virtual function and virtual function?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the use of f in c?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
What are qualifiers in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
a=5 a=a++/++a
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
how to find turn around time in operating system?