main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}
Answer Posted / tarkibitact
-2301
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Tell me can the size of an array be declared at runtime?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is the 'named constructor idiom'?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is methods in c?
code for quick sort?
What is structure in c language?
Write a program for finding factorial of a number.
Where are some collections of useful code fragments and examples?
Explain the binary height balanced tree?
Which is the memory area not included in C program? give the reason
Explain function?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Can variables be declared anywhere in c?
How can this be legal c?