noz92 Posted November 29, 2004 Posted November 29, 2004 Could somebody explain to me the computer languages C, C#, C++, and if there are any more as such, those too.
5614 Posted November 29, 2004 Posted November 29, 2004 this site: http://kb.indiana.edu/data/aewf.html?cust=763773.43552.131 is quite good. i can go into more detail if needed another time. (what are your backgrounds in programming, for what might you use these kind of languages for?)
noz92 Posted November 29, 2004 Author Posted November 29, 2004 I don't know, these kinds of things are just a sort of hobby of mine.
Jordie Posted November 30, 2004 Posted November 30, 2004 Could somebody explain to me the computer languages C, C#, C++, and if there are any more as such, those too. I happen to know all of these languages. Alright where shall I begin? C is an older language developed by the same developers who worked on UNIX. You can find out more about C here http://cm.bell-labs.com/cm/cs/who/dmr/chist.html C# is a new language developed by the (choke) Microsoft Corporation. It's part of their .Net Framework. It has similar syntax to C/C++. The language I liked but when the source was compiled it ran to slow. Slower then Java Applications that preformed the same task. C++ is C on steroids. Even though many people will say C++ is more powerful then C this just isn't true. C++ just add's support for things like OOP and so on. You can do OOP in C but it is a bit harder. You can find more about C++ at http://www.hitmill.com/programming/cpp/cppHistory.asp If you are wanting to learn one of these languages learn C first then C++.
Perennial Posted November 30, 2004 Posted November 30, 2004 What do you think about C++/C# in terms of parallel processing / multithreading (I'm not all that familiar with C# and what features it might have in this regime) ?
noz92 Posted November 30, 2004 Author Posted November 30, 2004 can you use any of them? how well? Not really, but I can use some more internet based languages such as HTML, and using computers to do those kinds of things are what I enjoy.
noz92 Posted November 30, 2004 Author Posted November 30, 2004 Could somebody explain to me how to use the Command Prompt on Microsoft® Windows® Office XP. Or a better question, what language does it use?
Jordie Posted December 1, 2004 Posted December 1, 2004 Could somebody explain to me how to use the Command Prompt on Microsoft® Windows® Office XP. Or a better question, what language does it use? You want to learn DOS. DOS stands for Disk Operating System. You issue commands to DOS. Once you learn it, you can create what is called a Batch File that can execute several commands at DOS without user interaction. In Command Prompt type in the following. C:\> Iexplore and hit return. Make sure not to type in the C:\>. That is just showing you what the prompt will look like. Notice now it launches Internet Explorer. This is only an example. If you want to learn DOS then check out http://www.computerhope.com/msdos.htm. Hope I helped you.
5614 Posted December 1, 2004 Posted December 1, 2004 yes that site is very good! http://www.computerhope.com/msdos.htm learn the basics: dir cd del also type: help for a list of DOS commands note that you can use the /? command for help on a certain command e.g dir /? brings up details about the dir command note the difference between DOS (Disk Operating System) and DoS (denial of service). DOS in windows XP is not really DOS. DOS is a OS (operating system) like windows but is a line or text based one. windows a visual OS with icons and stuff, with DOS you can do everything you can in windows, except you have to type a command instead of a click an icon. in XP DOS (aka CMD) is a DOS emulator. it is not DOS itself because DOS is an OS and windows is your OS... however it can bring up a little emulation window of it. DOS is still used as it can over-rule windows settings and restrictions.
noz92 Posted December 21, 2004 Author Posted December 21, 2004 You want to learn DOS. DOS stands for Disk Operating System. You issue commands to DOS. Once you learn it' date=' you can create what is called a Batch File that can execute several commands at DOS without user interaction. In Command Prompt type in the following. C:\> Iexplore and hit return. Make sure not to type in the C:\>. That is just showing you what the prompt will look like. Notice now it launches Internet Explorer. This is only an example. If you want to learn DOS then check out http://www.computerhope.com/msdos.htm. Hope I helped you.[/quote'] Well, the Iexplore comand didn't work.
Jordie Posted December 22, 2004 Posted December 22, 2004 Well, the Iexplore comand didn't work. What did you type? It should work if you have Internet Explorer installed. I know it works on Windows 9x and it should work on Windows XP as well. I really don't feel like booting into Xp just to check that.
noz92 Posted December 22, 2004 Author Posted December 22, 2004 Exactly what you sayed. If I understand correctly, you said not to type in C:\>, right?
Jordie Posted December 22, 2004 Posted December 22, 2004 Exactly what you sayed. If I understand correctly, you said not to type in C:\>, right? Type this iexplore ANd make sure you have Internet Explorer installed!
noz92 Posted December 22, 2004 Author Posted December 22, 2004 I'm using Internet Explorer right now. It says: 'iexplorer' is not recognized as an internal or external command' date=' operable program or batch file.[/quote'] Any idea as to what that means? I think you have to put a command infront of it. When I try a ping, say to http://www.scienceforums.net/, it says it can't find the host.
Rakdos Posted December 22, 2004 Posted December 22, 2004 the command should be C:/windows/iexplore.exe with c:/ being whatever HDD windows is on
Jordie Posted December 22, 2004 Posted December 22, 2004 the command should be C:/windows/iexplore.exe with c:/ being whatever HDD windows is on That would work but it dosen't need to be like that. Try start iexplore http://www.scienceforums.net I have not used the command for so long so that should work.
noz92 Posted March 8, 2005 Author Posted March 8, 2005 Can somebody tell me what programs you use the C/C#/C++ commands on.
Cadmus Posted March 9, 2005 Posted March 9, 2005 C++ is C on steroids. Even though many people will say C++ is more powerful then C this just isn't true. C++ just add's support for things like OOP and so on. I am one of the people who will say that C++ is more powerful than C in many ways. OOP is a very important and powerful improvement over C. Do you disagree?
InovFX Posted March 12, 2005 Posted March 12, 2005 OK, Just a little, I'll explain youl, Remember JUST A LITTLE This is a classic "Hello World!" application. noz92, your age is very young, it was a good age to learn programming. I learned it since I was 12 years old (Now, I'm 13). As you know C, C++ and C# are DIFFERENT (C and C++ not too different) : For example : C# (Courrently I use Visual C# .NET 2003) using System; class HelloWorld { static void Main() { Console.WriteLine("Hello World!"); Console.WriteLine("Type a word [i.e. q], then press enter to exit!"); Console.Write("... "); Console.ReadLine(); } } C/C++ (Currently I use Dev-C++ BETA 5 R 9 (4.9.9.2) with GCC 3.4.2) #include <iostream> using namespace std; int main() { int quit; cout << "HelloWorld!" << endl; cout << "Type a word [i.e. q], then press enter to exit!" << endl; cout << "... "; cin >> quit; return 0; } C and C++ developed by DELL LABS and C# is a Visual Basic alike PL but syntax is like C/C++. Developed by Microsoft. --
InovFX Posted March 12, 2005 Posted March 12, 2005 Oh ****. Sorry, I'm wrong DELL LABS Should be Bell Labs. When I posted that repply, I just dreamed for a Dell PC. Hahaha.....
noz92 Posted March 12, 2005 Author Posted March 12, 2005 I'm having trouble with BASIC because every program I download has there own version of the language. Every tutorial I find is for QBasic, wich I'm not even sure is still used (Microsoft doesn't even have the download page anymore). I'd imagine I'd run into the same problem with every other programing language I try to learn.
Cadmus Posted March 12, 2005 Posted March 12, 2005 OK' date='Just a little, I'll explain youl, Remember JUST A LITTLE This is a classic "Hello World!" application.[/quote']Since you did not cite, I am not sure if this post is in response to mine, which is directly above yours. C++ is a superset of C. Therefore, it is possible to write C code in C++, as you have done. Your C++ code is basically just C code. You did not use OO at all, such that your applications does not demonstrate the power of OO. Furthermore, in such a trivial application as you provided here, it is possible to make the claim that OO offers zero advantages over non OO languages.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now