tracks.cpp:1:2: error: invalid preprocessing directive #inclde; did you mean #include?
1 | #inclde<iostream>
| ^~~~~~
| include
tracks.cpp: In function 'int main()':
tracks.cpp:4:3: error: 'cout' was not declared in this scope
4 | cout<<"Shiva"<<endl;
| ^~~~
tracks.cpp:1:1: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
+++ |+#include <iostream>
1 | #inclde<iostream>
tracks.cpp:4:18: error: 'endl' was not declared in this scope
4 | cout<<"Shiva"<<endl;
| ^~~~
tracks.cpp:1:1: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
+++ |+#include <ostream>
1 | #inclde<iostream>