@Denno
93 / 95 / 19
Регистрация: 21.10.2012
Сообщений: 319
|
24.06.2014, 10:39
|
|
C++ | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| #include "my.h"
#include <conio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int foo;
int main(int argc, char** argv)
{
print_foo();
print(99);
getch();
return 0 ;
} |
|
0
|