Identify the correct sequence of steps followed in the life-cycle of a c program.
Answers
Answered by
0
*
* "Hello, World!": A classic.
*/
#include <stdio.h>
int
main(void)
{
puts("Hello, World!");
return 0;
}
Similar questions