what is the output of the following program?
main()
{
int i=-1,j=-1,k=0,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d %d %d %d %d",i,j,k,l,m);
}
Answer Posted / dally
0 0 0 3 1
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Write a program to show the change in position of a cursor using c
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Explain enumerated types in c language?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Describe wild pointers in c?
C language questions for civil engineering
number of times a digit is present in a number
Tell me is null always defined as 0(zero)?
How are strings stored in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
how to find anagram without using string functions using only loops in c programming