Students Marks Sum

  • + 0 comments

    why do we get these compiler error: solution.c: In function ‘marks_summation’: solution.c:26:5: error: ‘main’ is normally a non-static function [-Werror=main] int main() { ^~~~ solution.c:44:1: error: expected declaration or statement at end of input } ^ solution.c:44:1: error: control reaches end of non-void function [-Werror=return-type] } ^ cc1: some warnings being treated as errors Exit Status

    255