Can we make any program in c++ without using any header file and what is the shortest program in c++.
Partap Tanwar
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".