8. Non-void функции
#include <stdio.h>
int foo()
{
printf("in foo()\n");
// do smth
}
int main(void)
{
foo();
// do smth
}
Last updated
#include <stdio.h>
int foo()
{
printf("in foo()\n");
// do smth
}
int main(void)
{
foo();
// do smth
}
Last updated