Why does this program below not show any error?
Please help me to understand.
int main (void) {
"ANGUS";
1;
3.14;
return 0;
}
|
Why does this program below not show any error? Please help me to understand.
| ||||
|
show 3 more comments
feedback
|
|
Each of those statements are expressions that evaluate to a value, which is then discarded. Compare it to if you called a function that returned an int, a char or a float, without using the return value. That's also an expression that evaluates to a value. It is not uncommon to have functions that return values that the caller may or may not be interested in, like for example where If the compiler complained whenever you ignored a return value, you'd have a very noisy build log. Some compilers however diagnose (if sufficient warning flags are enabled) such pointless side-effect-less uses of literals and variables. | |||||||||||
feedback
|
|
It's perfectly valid for a statement in C to be just a value that gets discarded. Most people don't realise that this is exactly what happens when they code up things like:
The former is actually an expression which just happens to have the side effect of incrementing the variable after "returning" it. The latter function call actually returns a value (the number of characters printed) which is also discarded. From a certain viewpoint, that is no different from the statements:
other than the fact that they have no side effects which make them useful. In fact, even
All of this is detailed in C99, section
| ||||
|
feedback
|
|
It is perfectly valid for a statement to consist of just an expression. Nothing is achieved by doing so in your examples, but it's perfectly valid all the same. | |||
|
feedback
|
|
Why should it? The first three lines in you main don't do anything and return 0; is a valid expression. If you use gcc to compile the program try to enable all warnings (with -Wall parameter). This would print | |||||||||||||
feedback
|
|
Since in c it's a valid statement but when you use java it will give you compile time error. | |||||||||||||
feedback
|
|
Because it is valid. A string or a number is a valid expression and an expression followed by semi-colon is a statement (also informally known as instruction). | |||||||||||
feedback
|
"Harsha"? – Chris Burt-Brown Aug 24 '11 at 9:56"Harsha";line is exactly the same. With no optimization whatsoever, the construct follows the rules forstring literals: "6.4.5/5 ... array of static storage duration" and there will be 7 bytes allocated for it. – pmg Aug 24 '11 at 10:12