#includ<stdio.h>

void main(void)
{
     int age=18; // int형 변수 age를 선언하고 age에 18이라는 값을 대입 
     float score=2; //  float형 변수 score를 선언하고 score에 2라는 값을 대입 
     char high=\'b\'; // char형 변수 scorealphabet을 선언하고 scorealphabet에 B라는 값을 대입 
     
     printf(\"제 나이는 %d이구요,\\n\",age);
     printf(\"제 학점은 %f고, 최고는 %c입니다.\\n\",score,high);
     system(\"PAUSE\");


c구조대 블로그에서 2강보고있는중인데

2강에서 숙제가 나이,점수,학점이라서 대학생은 아니지만 막 해봤는데요,

{에 자꾸 x표시가 뜨는데 뭐가 잘못된건가요?