Thread: c input/output
View Single Post
Go4Expert Member
29Jul2012,08:21  
state's Avatar
#include<stdio.h>
#include<conio.h>
int main(){
int a,b;
a = -3- -3;
b = -3 - - (-3 );
printf("%d %d",a,b);
getch();
return 0 ;
}


the ouput is -6 and 0.Please explain how?