Skip to content

Instantly share code, notes, and snippets.

@huseyin
Created January 2, 2018 10:10
Show Gist options
  • Save huseyin/68a6c9a1d1b427919c23c090400a82a0 to your computer and use it in GitHub Desktop.
Save huseyin/68a6c9a1d1b427919c23c090400a82a0 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
int main(void) {
if (0) { printf("Hello world: 0\n"); }
if (1) { printf("Hello world: 1\n"); }
if (2) { printf("Hello world: 2\n"); }
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment