#include<stdio.h> int x, y=x, z=y; void main() { if ( x < y && y < z ) else if (x > z) prinf("x is greater than z"); else prinf("%d %d", x,z); }
Standard input is empty
prog.c:2: error: initializer element is not constant prog.c:2: error: initializer element is not constant prog.c:3: warning: return type of ‘main’ is not ‘int’ prog.c: In function ‘main’: prog.c:8: warning: implicit declaration of function ‘prinf’
Standard output is empty