13
Sử dụng hàm exit ()
Tôi muốn biết làm thế nào và khi nào tôi có thể sử dụng exit()chức năng như chương trình trong sách của tôi: #include<stdio.h> void main() { int goals; printf("enter number of goals scored"); scanf("%d",&goals); if(goals<=5) goto sos; else { printf("hehe"); exit( ); } sos: printf("to err is human"); } …
99
c