Jump to content

Help in enviroment..~

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
6 replies to this topic

#1
Guest_R3.RyozKidz_*

Guest_R3.RyozKidz_*
  • Guests
if there any environment for C ?
if java , sure got it own environment rite?

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
I don't understand the question. C is compiled to code that runs directly in the OS. Java is compiled to code that runs in the Java VM.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
Guest_Jordan_*

Guest_Jordan_*
  • Guests
I believe he is talking about an IDE? Try Dev-C++ or Code::Blocks.

#4
so1i

so1i

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 312 posts
Code::Blocks has been great to use (from a beginners point of view at least!). I've also heard Dev-C is good too, but never used it myself.

#5
TheSourceOfX

TheSourceOfX

    Learning Programmer

  • Members
  • PipPipPip
  • 45 posts
Maybe this isn't good for some people, but I like to do all of my coding in a text editor like Notepad++ and then just compile "by hand", i.e. in a DOS prompt (in Windows).

-TheSource

#6
marwex89

marwex89

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 10,720 posts
Yes, that is just a matter of preference, really. You'll learn more about compiling and linking by doing it by hand, but as soon as you know what is going on, an IDE will be a good choice for many.
Hey! Check out my new Toyota keyboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

#7
so1i

so1i

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 312 posts
Well for me, IDE is better really. You gain experience doing it by hand, but after that initial experience the functions an IDE can provide you really can speed things up. Plus they can help to trap errors before trying to compile by minimizing typos etc.