This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
University-Technical_Progra…/2_Printing_a_Variable/Printing_a_Variable.c
T
Damon Leven 83b9e0b48f Update Printing_a_Variable.c
Actually printed fox :P
2023-04-28 17:49:10 +00:00

16 lines
282 B
C

#include <stdio.h>
int main() {
int i = 3;
const char fox[4] = "FOX";
printf("Printing ");
for (unsigned int j = 0; j < 3; j++) {
printf("%c", fox[j]);
}
printf(", Since they are better :P\n");
return 0;
}