Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
No Answer is Posted For this Question
Be the First to Post Answer
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
What is the use of f in c?
program to print upper & lower triangle of a matrix
what is difference between procedural language and functional language ?
Explain about block scope in c?
why return type of main is not necessary in linux
what is the difference between while and do while?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
What is the difference between volatile and const volatile?
Who is the founder of c language?
What is indirect recursion? give an example?