(Basic Concepts 07) QUIZ

SoloLearn C 번역


QUIZ

  • What is the starting point for a C program?
    • C 프로그램의 시작점은 무엇인가?

[ ] First line

[ ] The <stdio.h> header

[x] The main() function


  • Fill in the blanks to output “I love C”:
    • “I love C”를 출력해라.
printf("I love C");


  • Which choice indicates a single-line comment?
    • 다음 중 올바른 한 줄 주석은 무엇인가?

[ ] ** single line comment

[ ] ## single line comment

[x] // single line comment


  • Fill in the blanks to declare a variable sum equal to the sum of a and b:
    • a와 b의 합과 같은 변수 sum을 선언해라.
int sum = a + b;


  • Fill in the blanks to output the value of v.
    • v의 값을 출력해라.
#include <stdio.h>

int main() {
  int v = 42135;
  printf("%d", v);
  
  return 0;
}