TutorialsBazaar

← Back

Learn C++ Programming

Module 9/15

Functions

Module 9 of 15

Functions are reusable code blocks. C++ also supports function overloading where multiple functions can have the same name with different parameters.

Functions reusable code blocks होते हैं। C++ में function overloading भी होता है जिसमें एक ही नाम के कई functions हो सकते हैं।

#include <stdio.h>

int main() {
    printf("Welcome to Functions");
    return 0;
}