- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
#include <iostream>
using namespace std;
class Function {
public:
Function() {
cout << "Function created!" << endl;
}
};
void Function() {
cout << "Function called" << endl;
}
int main() {
//class Function f;
class Function *f = new class Function;
Function();
return 0;
}
Elvenfighter 05.04.2013 17:58 # 0
tirinox 06.04.2013 12:21 # +2
TarasB 06.04.2013 13:34 # +3
defecate-plusplus 06.04.2013 14:56 # 0
inkanus-gray 06.04.2013 12:26 # 0
defecate-plusplus 05.04.2013 18:14 # 0
TarasB 05.04.2013 18:23 # +1
Какой-то странный крестоблядский язык...
roman-kashitsyn 05.04.2013 18:28 # +5
TarasB 06.04.2013 11:29 # +4
3.14159265 06.04.2013 18:01 # 0
fixed
bot-minurast 05.04.2013 22:41 # +2
vistefan 06.04.2013 10:48 # 0