+ 1
Whatâs the bug ?
#include <iostream> using namespace std; intmain() { cout<<"Hello world"; return 0; } When I write that at c++ compiler it just gives me an error đ„Č what âs the bug ? I canât find the problem . Help me please đ«„
4 Answers
+ 1
ۚۧÙŰč۱ۚÙ
ۧÙÙ Ùۧ۔ÙÙ ŰšÙÙ ŰȘŰč۱ÙÙ int Ù Ű§ÙۯۧÙÙ Ű§Ù۱ۊÙŰłÙÙ main
ÙۧŰČÙ
ŰȘŰźÙÙ
+ 3
#include <iostream>
using namespace std ;
*/ must put space between return type int and main /*
int main(){
cout << " Hello World " << endl ;
return 0 ;
}
+ 2
Is that the exact code? A whitespace is missing in "int main".
What error do you get?
+ 1
Thanksssss to you all đ€.