c-course/c-basic/foo.c
2023-12-25 16:54:33 +03:00

23 lines
418 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
int foo()
{
printf("I am foo\n");
}
int main()
{
foo();
}
/**
In the written book it is foo() and main() and it returns this warning
~/Projects/hwpplayer1/c-course/c-basic $ gcc foo.c
foo.c:3:1: warning: return type defaults to int [-Wimplicit-int]
3 | foo()
| ^~~
foo.c:8:1: warning: return type defaults to int [-Wimplicit-int]
8 | main()
| ^~~~
**/