cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
result of operator
result of operator
Oct 5, 2015 at 1:01am UTC
sujathatalasila
(1)
please explain what is going here step by step
#include <stdio.h>
void main()
{
int a=2,b=1,c,d;
c=a<b;
d=(a>b) && (c<b);
printf ("c=%d, d=%d\n", c,d);
return0;
}
Topic archived. No new replies allowed.