C functions

9 Views
Published
C functions tutorial example explained

#C #functions #tutorial

void birthday()
{
printf("\nHappy birthday to you!");
printf("\nHappy birthday to you!");
printf("\nHappy birthday dear...YOU!");
printf("\nHappy birthday to you!\n");
}

int main()
{
birthday();
birthday();
birthday();

return 0;
}
Category
Bro Code
Tags
c functions, functions c, c programming
Be the first to comment