[ create a new paste ] login | about

Link: http://codepad.org/IzGJdr7S    [ raw code | output | fork ]

C, pasted on Jul 5:
1
2
3
4
5
6
7
8
9
10
#include<stdio.h> 
	int main()
	{
		int i = 10, j=20;
		if (  i=5 ) || if  (j=30 )
			printf(" Values has been changed\n");
		else
			printf(" Nothing changed !!! \n");
		return 0;
	}


Output:
1
2
In function 'main':
Line 5: error: expected expression before '||' token


Create a new paste based on this one


Comments: