13 lines
171 B
C
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");
|
|
}
|