// Prints four question marks using a loop #include int main(void) { for (int i = 0; i < 4; i++) { printf("?"); } printf("\n"); }