Run id: 101784
Main.cc: In function 'int main()':
Main.cc:7:12: error: invalid conversion from 'const char*' to 'char' [-fpermissive]
for (i = "a"; i <= "z"; i++)
^
Main.cc:7:25: warning: comparison with string literal results in unspecified behaviour [-Waddress]
for (i = "a"; i <= "z"; i++)
^
Main.cc:7:25: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
Main.cc:11:11: error: invalid conversion from 'const char*' to 'char' [-fpermissive]
for(i = "Z"; i <= "A"; i--)
^
Main.cc:11:24: warning: comparison with string literal results in unspecified behaviour [-Waddress]
for(i = "Z"; i <= "A"; i--)
^
Main.cc:11:24: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]