뭐라 말좀해봐...
#include <stdio.h>
#include <tchar.h>
#include <windows.h>
int _tmain(int argc, TCHAR* argv[])
{
DWORD val1, val2;
val1=_ttoi(argv[1]);
val2=_ttoi(argv[2]);
_tprintf(_T("%d + %d = %d \n"), val1, val2, val1+val2);
_gettchar();
return 0;
}
그리고 이게 왜 나를 빡돌게하는지 맞춰봐
댓글 0