1
Reply

Can we make any program in c++ without using any header file and what is the shortest program in c++.

Partap Tanwar

Partap Tanwar

15y
6.4k
0
Reply

    C++ program can't be run without header file but a c program can execute without a header file. shortest c++ program is #include<iostream.h>int main(){return 0;}
    <br>shortest program in c++ is to print "hello world".