NAME: barf SRC C #include <stdio.h> void barf() { printf("I just barfed"); return; } int main() { barf(); } SRC RESULTS: barf : I just barfed