Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(void) {
- for (int i = 0; i < 16; i++) {
- printf("%d\n", i);
- }
- int looping = 1;
- while (looping)
- {
- printf("looping");
- looping = 0;
- }
- if (1 > 2)
- { printf("Well math sucks"); }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment