Introduction to Functions in C Programming
Source code for this Tutorial
#include <stdio.h>
#include <stdlib.h>
void eat();
void sleep()
{
printf("Am sleeping\n");
}
int main()
{
eat();
eat();
eat();
sleep();
return 0;
}
void eat()
{
printf("Am eating now\n");
}