+ 1
Is the beginning of those C++ programms always the same?
for my Overview
2 Antworten
+ 2
C++ program always start same.....
#include<iostream>
this is a header file wich contain some functions......
you need to add this to your C++ program and you need int main()
int main() means the main function of the program
0
Thank you very much!