in C Plus Plus by
What can be the smallest executable code in C Proramming?

1 Answer

0 votes
by
main is necessary for executing the code. Code is

void main()

{

}
...