Leser: 10
|< 1 2 >| | 11 Einträge, 2 Seiten |
pktm+2008-04-06 12:17:48--Hui, und wie will ich dann feststellen, ob was in der Variable drin ist?
QuoteIndem ich irgend einen Wert abprüfe? Sowas wie if( x =< 0 || x > 0 ) und dann die Exception abfange?
QuoteRun-Time Check Failure #3 - The variable 'x' is being used without being initialized.
pktm+2008-04-06 22:16:24--Bei mir kam da aber eine!?
QuoteRun-Time Check Failure #3 - The variable 'x' is being used without being initialized.
1
2
3
4
5
6
7
8
9
10
11
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int nargs, char **args) {
int x;
cout << x << endl;
return EXIT_SUCCESS;
}
|< 1 2 >| | 11 Einträge, 2 Seiten |