Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What can be the smallest executable code in C Proramming?
Home
C Plus Plus
What can be the smallest executable code in C Proramming?
asked
Jan 9
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
by
GeorgeBell
main is necessary for executing the code. Code is
void main()
{
}
...