C_dumping-ground/functionordertest.c
2022-04-09 15:05:23 -04:00

12 lines
210 B
C

#include <stdio.h> //printf and shit
#include <math.h>
int fuck(int asd) {
return asd;
}
int main(){
int n = 0;
printf("%d %d\n", ++n, fuck(n)); //this is bad and shouldnt compile
return 0;
}