/* C program of Function with
Parameter No return value*/
#include<stdio.h>
void travelKorbo(int a) //a = 20
{
printf("Ami protidin %d kilometer travel kori.\n",a);
}
int main()
{
//Function call
travelKorbo(20);
travelKorbo(30);
travelKorbo(40);
travelKorbo(50);
return 0;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.