Submission #1889

# Submission time Handle Problem Language Result Execution time Memory
1889 2013-07-19T08:34:45 Z mh5664 최댓값 (tutorial2) C++
Compilation error
0 ms 0 KB
#include <stdio.h>

FILE *in = fopen ("input.txt", "r"), *out = fopen ("output.txt", "w");

void main ()
{
	int n, d, max = -2147483647;
	fscanf (in, "%d", &n);

	for (int i = 0; i < n; ++i)
	{
		fscanf (in, "%d", &d);
		if (max < d)
			max = d;
	}
	fprintf (out, "%d", max);
	fclose (in);
	fclose (out);
}

Compilation message

tutorial2.cpp:5:12: error: '::main' must return 'int'
tutorial2.cpp: In function 'int main()':
tutorial2.cpp:8:23: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
tutorial2.cpp:12:24: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]