intro-to-zig-talk/c/string_append_or.c

8 lines
116 B
C
Raw Normal View History

2024-08-08 18:39:18 +00:00
#include <stdio.h>
int main() {
for (size_t i = 0; i < 5; i++)
{
printf("Number is: " + i);
}
}