return example

This commit is contained in:
Mert Gör 🇹🇷 2024-10-30 05:01:38 +03:00
parent 3b7caa231a
commit 73e2790bda
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2024-10-30 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/return_example_001.c: return example 001
* c-basic/return_not_reachable.c (main): reachable code and unreachable code return
2024-10-29 Mert Gör <mertgor@masscollabs.xyz>

View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
printf("I'm main\n");
return 0; // with or without same effect
}