c-course/c-basic/foo.c

33 lines
635 B
C
Raw Normal View History

2024-01-24 10:45:36 +03:00
/**
* @file foo.c
* @author Mert Gör (mertgor@masscollabs.xyz)
* @brief Foo example
* @version 0.1
* @date 2024-01-24
*
* @copyright Copyright (c) 2024 Mert Gör and contributors - GPLv3 or any later
*
*/
2023-12-25 16:54:33 +03:00
#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()
| ^~~~
**/