An expression to whose value an operater is applied
a) operand
b) variable
c) constant
d) all of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between memcpy and memmove?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
Is it better to use malloc() or calloc()?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
How can I generate floating-point random numbers?
What is array within structure?
What is dynamic dispatch in c++?
What is the purpose of type declarations?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
#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); }