Hi,
I was interested to know if there is a way to use a variable name split
across multiple lines in C.
For example :
int this_is_a_very_ long_variable_n ame = 10;
I would like to split the "this_is_a_very _long_variable_ name " into 2
lines - lets say "this_is_a_ " in the first line and
"very_long_vari able_name " in the second line.
Is this possible syntactically in C?
I tried using the backslash operator in vain :
int this_is_a_\
very_long_varia ble_name = 10;
The above gives a compilation error.
Please suggest the means to do this if there is any.
Thanks,
Sriram.
I was interested to know if there is a way to use a variable name split
across multiple lines in C.
For example :
int this_is_a_very_ long_variable_n ame = 10;
I would like to split the "this_is_a_very _long_variable_ name " into 2
lines - lets say "this_is_a_ " in the first line and
"very_long_vari able_name " in the second line.
Is this possible syntactically in C?
I tried using the backslash operator in vain :
int this_is_a_\
very_long_varia ble_name = 10;
The above gives a compilation error.
Please suggest the means to do this if there is any.
Thanks,
Sriram.
Comment