Thu Sep 08, 2011 7:51 am
main()
{
int c;
c=-2&&3&&1;
printf("%d",c);
getch();
}
Thu Sep 08, 2011 7:18 pm
http://publib.boulder.ibm.com/infocenter/comphelp/v8v101/index.jsp?topic=/com.ibm.xlcpp8a.doc/language/ref/logande.htm
#include<iostream>
#include<conio.h>
using namespace std;
void main()
{
int c;
c=(-2)&(3)&(1);
printf("%d",c);
getch();
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.