#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}
Answer Posted / saravanan
0,1,2,0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does static variable mean in c?
Can true be a variable name in c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
Who invented bcpl language?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is cohesion in c?
what do you mean by enumeration constant?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
How can you increase the size of a statically allocated array?
What are pointers really good for, anyway?
What is hungarian notation? Is it worthwhile?
Difference between malloc() and calloc() function?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
How can I find out the size of a file, prior to reading it in?