View difference between Paste ID: hF5yMMAz and dehFd1PE
SHOW: | | - or go back to the newest paste.
1
#include <stdio.h>
2
3
4
int func (int abc, int xyz) {
5
6
    if (abc-1) 
7
    {
8
        printf ("1\n");
9
    }
10
11
12
     if (abc-2) 
13
    {
14
        printf ("2\n");
15
    }
16
    
17
18
    return 0;
19
}