首页 > 代码库 > 13期末2

13期末2

#include "stdio.h"
void main(){
   int a = 7;
   int b = 1;
   printf ( "a&b = %d\n",a&b);
   printf( "a&&b = %d\n",a&&b);
}