프로그램
-
-
C프로그램/C 2017. 9. 22. 11:47
#include //표준 입력 / 출력 라이브러리#include int main(void) // int : 함수의 반환 값으로 정수를 반환 -void : 함수의 입력으로 인수를 취하지 않는다 return 0; printf("Input the value of x: ");scanf_s("%d", &x); printf("the value of x is : %d\n", x) \n 줄바끔 int - integer %d float - float point number %f char -a single character %c 선언 된 변수에만 값을 할당 . C는 대소 문자를 구분 (A1 a1 은 다른 변수) + addition - subtraction * multiplication / division % remaind..