Generation

code to explanationFri, 03 Feb 2023

#include<stdio.h> void printName(); void main () { printf("Hello "); printName(); } void printName() { printf("Javatpoint"); }

The above program shows the example of how to call a function. printName() is the function that we are calling.

Questions about programming?Chat with your personal AI assistant