Files
CS50---Harvard/src1/mario1.c
T
2026-05-28 10:16:10 +00:00

13 lines
171 B
C

// Prints a row of 4 question marks with a loop
#include <stdio.h>
int main(void)
{
for (int i = 0; i < 4; i++)
{
printf("?");
}
printf("\n");
}