main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}

Answer Posted / vignesh1988i

some garbage value , 4,5,5...

why in this o/p garbage value is because only 3 parameters
are passed but we have assigned 4 control strings , where
one control string is useless, so for that compiler will
print garbage value....

Is This Answer Correct ?    2 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a code to generate a series where the next element is the sum of last k terms.

940


Give the rules for variable declaration?

877


What are the general description for loop statement and available loop types in c?

873


What is typedef struct in c?

768


What is sorting in c plus plus?

706






main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

820


When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.

1723


Why isn't it being handled properly?

803


What does 4d mean in c?

1187


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1877


What is operator promotion?

787


what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555

2750


What are the 4 types of organizational structures?

782


Can you explain the four storage classes in C?

824


What are loops c?

782