Language
Compiler
Options
#include <iostream>
void main(int x) {
}
void func( float *f, char *c) ;
$
Exit Code:
1
Author
anonymous
almost 7 years ago
Author
anonymous
almost 7 years ago
$
prog.cc:3:16: error: '::main' must return 'int'
void main(int x) {
^
prog.cc:3:6: warning: 'int main(int)' takes only zero or two arguments [-Wmain]
void main(int x) {
^~~~
prog.cc: In function 'int main(int)':
prog.cc:3:15: warning: unused parameter 'x' [-Wunused-parameter]
void main(int x) {
~~~~^