Login
Remember
Register
Ask a Question
What can be the smallest executable code in C Proramming?
0
votes
asked
Jan 9, 2024
in
C Plus Plus
by
GeorgeBell
What can be the smallest executable code in C Proramming?
c-programming-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 9, 2024
by
GeorgeBell
main is necessary for executing the code. Code is
void main()
{
}
...