Mega Code Archive

 
Categories / C / Function
 

Return statement

#include <stdio.h> void f(void); int main(void) {   f();   return 0; } void f(void) {   printf("Here.");   return; /* return with no value */   printf("Never."); }