#include <stdio.h>
#include <windows.h>
int main()
{
puts ("Hello my world!");
return(0);
system("pause");
}
마이크로 비주얼 c++
저기 hello "my" world! 이렇게 집어넣으면 오류 나는데
#include <stdio.h>
#include <windows.h>
int main()
{
puts ("Hello my world!");
return(0);
system("pause");
}
마이크로 비주얼 c++
저기 hello "my" world! 이렇게 집어넣으면 오류 나는데
₩"my ₩"
와 시발 고맙다 진짜 ㅜㅜ
#include <stdio.h>#include <conio.h> int main() { puts ("Hello \"my\" world!"); getch(); return(0); }
고맙다 ㅜㅜ