13 lines
229 B
Markdown
13 lines
229 B
Markdown
|
Read this source code carefully.
|
||
|
|
||
|
int var = -5;
|
||
|
if (var > 0){
|
||
|
printf("Variable is positiv.");
|
||
|
}
|
||
|
|
||
|
var = 10;
|
||
|
printf("Program ended.");
|
||
|
if (var > 0) {
|
||
|
printf("Variable is positiv.");
|
||
|
}
|