Thread C++ =>Einstieg: Was man dafür braucht... (71 answers)
Opened by Gast at 2006-06-16 15:15

renee
 2006-06-18 16:08
#11451 #11451
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Man sollte vielleicht auch noch sagen, dass main int zurückgibt:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
using namespace std;
int a;
int main()
{
a=2;
cout <<"\n a= "<<a;
a= 90+a;
getch();
return 0;
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread C++ =>Einstieg: Was man dafür braucht...