개행문자포함 6개
#include <stdio.h>
int main(void)
{
int num;
printf("12345\n");
num = printf("67890\n");
printf("함수 반환 값1: %d \n", num);
printf("함수 반환 값2: %d \n", printf("Before or After\n"));
return 0;
}
'C > c언어 수업' 카테고리의 다른 글
p217 | / - 사용해 데이터 구분 (0) | 2020.08.05 |
---|---|
p214 (0) | 2020.08.05 |
p195 - int Increment(int n); /*Increment 함수의 선언*/ (0) | 2020.08.04 |
p189 함수 (0) | 2020.08.04 |
p162형변환 (0) | 2020.08.04 |