C program of Function with No parameter No return value

/* C program of Function with No parameter No return value*/ #include<stdio.h> void urbo() //void = return type/valuless data type, urbo = function name { printf("Ami Urbo.\n"); } void travelKorbo() { printf("Ami travel korbo.\n"); } int main() { urbo(); //Function call travelKorbo(); 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.