You are here: Home Software Engineering c++ Funktionen
Search
Advanced Search…
E-Mail

Webmail: webmail.wyden.com

E-Mail Preferences: postfix.wyden.com/users

E-Mail Administration: postfix.wyden.com

Statistics
Total: 473
Total Pages: 286
Total Folders: 87
Total Files: 18
Total Links: 26
Last modification: 19.04.2012 15:21
 

Funktionen

by Wyden Silvan last modified 20.05.2010 14:40

void tesfunk() {
-> gibt void zurück
}

int main(){
tesfunk();
}

//mit variablen
void testfunk(int x, int y) { }
testunk(15);


//mit rückgabewert
int testfunk() {
int anz;
anz++;
return(anz);
}

return; -> funktion wird beendet

#include "funktionen.h"