9 lines
98 B
C
9 lines
98 B
C
// Prints a row of 4 question marks
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("????\n");
|
|
}
|