What could be smallest programs in the C and C++ in terms of bytes?
Answers
Answered by
13
//to print single space!!
#include<iostream.h>
void main()
{
cout<<" ";
}
Similar questions