8 lines
144 B
C++
8 lines
144 B
C++
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("Server starting...\n");
|
|
printf("Press any key to exit...\n");
|
|
scanf_s("0");
|
|
return 0;
|
|
} |