tools:c
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:c [2024/06/03 05:38] – Humphrey Boa-Gart | tools:c [2024/08/06 05:48] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{wst> | + | {{wst> |
====== C ====== | ====== C ====== | ||
Line 30: | Line 30: | ||
My recommendation would probably be to go with MonoDevelop, | My recommendation would probably be to go with MonoDevelop, | ||
+ | |||
+ | ==== Unix/ | ||
+ | |||
+ | It's likely that you already have a compiler such as gcc installed. To be sure, go to the command line and type " | ||
+ | |||
+ | The majority of Unix and Linux programmers don't use an IDE, but rather prefer the text-based interfaces provided by the GNU utilities, which are included with most Unix/Linux operating systems. Emacs can also be set up with [[https:// | ||
+ | |||
+ | You can also get Anjuta IDE, get it from Add/Remove programs or sudo apt-get install anjuta or yum install anjuta. This particular IDE is fully integrated with GNU's Autotools, and will produce source tarballs that Unix users expect. The environment is fully integrated with the GNOME desktop, and thus will look like shit on KDE. It'll also let you configure a graphical front-end that will look and feel like it belongs in GNOME/Xfce. | ||
+ | |||
+ | For KDE users, there is KDevelop, which is made by the KDE people. It'll look better in KDE than Anjuta, and provides a similar feature set, but with support for Qt based graphical interfaces instead of Glade/GTK2 graphics. | ||
+ | |||
+ | Lastly, MonoDevelop, | ||
+ | |||
+ | ==== Macintosh ==== | ||
+ | |||
+ | Mac OSX includes Xcode (the installation will install gcc and all your libs) on the operating system DVD. It's pretty easy to set up a C project. Open Xcode, File-> | ||
+ | |||
+ | Be warned: Apple' | ||
+ | |||
+ | Whatever you do, don't use the beta of Xcode 3.1 right now. It's debugger is seriously borked, and the -g options on GCC don't work worth shit, either. I guess that's what you get for trusting Apple. | ||
+ | |||
+ | ===== Get Started ===== | ||
+ | |||
+ | Now that we all have a compiler I suppose we can get started right? Well first of all I have a few things to say: | ||
+ | |||
+ | * You may find similarities between this and other tutorials. Since we're teaching you the same thing (except I'm going very deep) this should be expected. | ||
+ | * It won't happen overnight, be patient, if you feel yourself getting frustrated, take a break. Go for a walk, smoke a bowl or whatever you do to relax. This isn't the easiest thing you'll do in your life but I assure you that if you stick with it, you'll be thankful you put the work in. | ||
+ | * Use your new found knowledge! There' | ||
+ | * **Download the Kernighan and Ritchie C book:** [[http:// | ||
+ | * You can find more books on C, C++ and C# at [[http:// | ||
+ | |||
+ | ===== C# ===== | ||
+ | |||
+ | This is the .NET version of C. It runs in a visual environment similar to Visual Basic. | ||
+ | |||
+ | ===== Ancient Tradition ===== | ||
+ | |||
+ | # | ||
+ | int main(int argc, char** argv) | ||
+ | { | ||
+ | | ||
+ | | ||
+ | } | ||
+ | |||
+ | That's the basic emo version of "Hello World", | ||
+ | |||
+ | Line 1: ''# | ||
+ | |||
+ | Line 2: ''< | ||
+ | |||
+ | Line 3: The open curly brace here opens the primary code block for the main function. That's all it does. | ||
+ | |||
+ | Line 4: '' | ||
+ | |||
+ | Line 5: Here, we return the integer that the main function expects, namely 0. | ||
+ | |||
+ | Line 6: The closed curly brace here closes the primary code block for the main function. | ||
+ | |||
+ | All lines of actual program code must end in a semicolon. Preprocessor lines don't need it, neither do the opening lines of function definitions nor curly brace lines. This is because the semicolon is about the most useless key on the keyboard when you're programming, | ||
+ | |||
+ | Now, you might want to put some shit below the other, in two different lines. You might be thinking "That shit's easy, dawg, you'll make another printf() command, so we would have something like this: | ||
+ | |||
+ | # | ||
+ | int main(int argc, char** argv) | ||
+ | { | ||
+ | | ||
+ | | ||
+ | | ||
+ | } | ||
+ | |||
+ | Thing is, when you try to compile the program with that, you will end up with shit like this: | ||
+ | |||
+ | Goodbye, cruel world!brb suicide | ||
+ | |||
+ | Which is, well, not exactly what we're looking for. | ||
+ | |||
+ | But why does this shit happen? It's because that after the end of a command, it positions an " | ||
+ | |||
+ | # | ||
+ | int main(int argc, char** argv) | ||
+ | { | ||
+ | | ||
+ | | ||
+ | | ||
+ | } | ||
+ | |||
+ | And finally we'll end up with this: | ||
+ | |||
+ | Goodbye, cruel world! | ||
+ | brb suicide | ||
+ | |||
+ | Victoly. | ||
+ | |||
+ | If you wanna clear up the screen, simply use the command clrscr() | ||
{{tag> | {{tag> |
tools/c.1717393099.txt.gz · Last modified: 2024/08/06 05:52 (external edit)
Find this page online at: https://bestpoint.institute/tools/c
Find this page online at: https://bestpoint.institute/tools/c