main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}
Answer Posted / mayur dharmik
printf("%d%d%d",i,j,k,m);
it has only 3 %d.
So, it will print only 3 value.
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is the benefit of using const for declaring constants?
Define macros.
There seem to be a few missing operators ..
What is extern keyword in c?
Can we use visual studio for c?
Is boolean a datatype in c?
Can we replace the struct function in tree syntax with a union?
Write a program to print ASCII code for a given digit.
Compare interpreters and compilers.
Where does the name "C" come from, anyway?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What are the applications of c language?
What’s the special use of UNIONS?
When the macros gets expanded?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..