cpp 23include 22 22 3c 3e

Solutions on MaxInterview for cpp 23include 22 22 3c 3e by the best coders in the world

showing results for - "cpp 23include 22 22 3c 3e"
Andy
24 Apr 2019
1#include <iostream>
2#include "foop.h"
3
4int main(int argc, char *argv[])
5{
6int x=42;
7std::cout << x <<std::endl;
8std::cout << foo(x) << std::endl;
9return 0;
10}
11
Marianna
09 Feb 2017
1#include <iostream>  // Searches iostream in Standard C++ Header files but not in the Current file's folder
2#include "myiostream.h" // Searcher myiostream.h in the Current file's folder and also the Standard Header files