11 lines
183 B
C
11 lines
183 B
C
|
#include <stdio.h>
|
||
|
|
||
|
/*
|
||
|
* This program has the purpose of returning a 0 value, indicating to the shell that the program was
|
||
|
* executed successfully.
|
||
|
*/
|
||
|
|
||
|
int main(){
|
||
|
return 0;
|
||
|
}
|