Hiii all
I made this program today
int main()
{
int a = 1,2; /* Shows error */
int b = (1,2); /* No error */
}
Why first one shows error while second one does not? Just ( ) makes one program compile. Why?
--Shruti
|
Hiii all I made this program today
Why first one shows error while second one does not? Just ( ) makes one program compile. Why? --Shruti | ||||
|
feedback
|
|
| ||||
|
feedback
|
|
Inside the parentheses, the language specifies an expression will occur. In that case ( Without parentheses, the language specifies that variable declarations are separated by commas. In the example of | ||||
|
feedback
|
|
The reason is in your first statement The parentheses in the second statement | |||
|
feedback
|
|
Another example: In case you want to use a fractional number, use a float/double type and use the dot as a decimal symbol: | |||
|
feedback
|
|
None of them made sense to me at fist. But then i remembered multiple operations in for loops. Eg:
Knowing that 1 is a valid expression, and that expressions are valid language elemnts, my conclusion is that (1,2) evaluates 1 (but does nothing with it), then evaluates 2 and returns 2. And finally:
What does is evaluate 1 and 2 as before, return 2, and assign it to b. | |||
|
feedback
|