C
[C] 002 변수
qkrwngus
2021. 1. 15. 20:51
#include <stdio.h>
void main()
{
int x;
int y;
int z;
x = 1;
y = 15;
z = x + y;
printf("%d", z);
}