What does c value mean?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
Difference between Shallow copy and Deep copy?
int far *near * p; means
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the difference between int and float?
What type of function is main ()?
What is a pointer in c?
how can i get output like this? 1 2 3 4 5 6
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
write an algorithm to display a square matrix.
How can I read/write structures from/to data files?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50