zhxy/hello.c

15 lines
198 B
C
Raw Normal View History

2022-01-06 15:41:19 +00:00
//#include <QCoreApplication>
#include <stdio.h>
#include <iostream>
using namespace std;
int main()
{
printf("Hello world by me\n");
cout<<"Hello world by me"<<endl;
return 0;
}