Home > Back-end > But why textbook can run, the practice can't (small white just learning c language)
But why textbook can run, the practice can't (small white just learning c language)
Time:09-21
[example] 5.1 function no arguments, The program code is as follows: # include "stdio.h" Void printstar () { Printf (" * * * * * * * * \ n "); } Void print_message () { Printf (" how do you do \ n "); } Void main () { Printstar (); Print_message (); Printstar (); }
The results are as follows: * * * * * * * * * * * How do you do * * * * * * * * * * *