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
What is static function in c?
How can you draw circles in C?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is actual argument?
What is variables in c?
What is a lookup table in c?
How to define structures? ·
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is size of union in c?
What will the preprocessor do for a program?
What is meant by type casting?
how do you execute a c program in unix.
What is meant by realloc()?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?