C++ programming tutorial #1:
Today I am going to teach you how to make a simple "Hello World" code. I use Dev-C++ as my compiler but if you want, you can use a different one. Please subscribe!
C++ programming tutorial #1: Today I am going to teach you how to make a simple "Hello World" code. I use Dev-C++ as my compiler but if you want, you can use a different one. Please subscr...
Like to rate videos and let people know what you think?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
Like to share videos with friends?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
This video has been removed from your Favorites. (Undo)
Like to Favorite videos and let people know what you think?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
modmadmike@modmadmike-server:~ $ gcc -o hello hello.cpp hello.cpp: In function int main(): hello.cpp:7: error: end1 was not declared in this scope hello.cpp:8: error: system was not declared in this scope modmadmike@modmadmike-server:~ $
modmadmike@modmadmike-server:~ $ g++ -o hello hello.cpp hello.cpp: In function int main(): hello.cpp:7: error: end1 was not declared in this scope hello.cpp:8: error: system was not declared in this scope modmadmike@modmadmike-server:~ $
Your linux compiler could be missing a library, I'm not exactly familiar with the error messages from linux but I'll give it a try. What is this end1 error? Did you accidentally type endl; incorrectly or something? Also it could be that your linux compiler(s) are missing a library that tells the compiler what system("pause") does.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
hello.cpp: In function int main():
hello.cpp:7: error: end1 was not declared in this scope
hello.cpp:8: error: system was not declared in this scope
modmadmike@modmadmike-server:~ $
no gcc?
hello.cpp: In function int main():
hello.cpp:7: error: end1 was not declared in this scope
hello.cpp:8: error: system was not declared in this scope
modmadmike@modmadmike-server:~ $
g++ has the same problem lol