[ create a new paste ] login | about

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

C, pasted on Jan 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>

#define STATUS_OK 0
int main()
{
int sts = 0;
int invalid = 1;

if (sts != STATUS_OK || invalid == 1)
{ 
printf("\n add to hw again\n");
return 0;
}

printf("\n dont add to h/w again \n");
return 0;
}


Output:
1
2

 add to hw again


Create a new paste based on this one


Comments: