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 / abhradeep chatterjee
0 0 1 3 1
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Where static variables are stored in memory in c?
what is reason of your company position's in india no. 1.
How would you rename a function in C?
What does volatile do?
What is the difference between struct and typedef struct in c?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
How do you view the path?
What does int main () mean?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is strcpy() function?
I need testPalindrome and removeSpace
#include
What is ## preprocessor operator in c?
What is the right type to use for boolean values in c?
What is the size of structure in c?
What is c definition?