C arguments parameters tutorial example explained
#C #arguments #parameters
void birthday(char x[], int y)
{
printf("\nHappy birthday dear %s!", x);
printf("\nYou are %d years old!", y);
}
int main()
{
char name[] = "Bro";
int age = 21;
birthday(name, age);
return 0;
}
#C #arguments #parameters
void birthday(char x[], int y)
{
printf("\nHappy birthday dear %s!", x);
printf("\nYou are %d years old!", y);
}
int main()
{
char name[] = "Bro";
int age = 21;
birthday(name, age);
return 0;
}
- Category
- Bro Code
- Tags
- c arguments, arguments c, arguments
Be the first to comment
Up Next
Autoplay
-
Python default arguments are awesome!
by brocode 149 Views -
C# objects as arguments
by brocode 143 Views -
Python keyword arguments are awesome!
by brocode 154 Views -
Python keyword arguments
by brocode 147 Views -
Code Default Arguments in AWS Lambda Functions
by awsdevelopers 147 Views -
How to counter arguments from developers, designers and managers against accessibility
by wordpress 163 Views -
C# generics ⁉️
by brocode 171 Views -
Python objects as arguments
by brocode 151 Views -
PHP Function Parameters - Named Arguments - Variadic Functions & Unpacking - Full PHP 8 Tutorial
by gio 163 Views -
C++ structs as arguments explained
by brocode 142 Views -
How to Set Up WooCommerce Product Filters for Your Online Store
by hostinger 743 Views -
Best AI Content Writers in 2025: Our Top Picks
by hostinger 525 Views -
How to Set Up Email on Apple Mail in Minutes | Hostinger
by hostinger 548 Views -
How to Create a Professional Fitness Website With Ease
by hostinger 694 Views -
How to Host an Ark Server: Hostinger Tutorial
by hostinger 739 Views -
How to Build a Small Business Website | From Zero to Launch
by hostinger 681 Views -
10 Hobbies for Students That ACTUALLY Make You Money
by hostinger 739 Views -
SSH Connection Refused: 6 Methods to Fix It (Hostinger Tutorial)
by hostinger 656 Views -
How to Create a Business Website with AI | Fast & Easy!
by hostinger 669 Views -
How to Build a WordPress Website With AI
by hostinger 693 Views
Add to playlist
Sorry, only registred users can create playlists.


