Programming/C

예제 val_position.c

김병현 2008. 12. 29. 23:57

/* val_position.c */

#include <stdio.h>

int main(void)
{

 int a;
 int b;
 
 a = 10;
 b = 20;

 printf("%d %d\n", a, b);
  
 return 0;
}