Results 1 to 10 of 18

Thread: C programmers

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Mar 2009
    Posts
    1

    Thumbs up

    Hi,
    For beginning learn about
    if, for, while, ... (C ANSI)

    struct... typedef ...

    and after a good programmer know STD library...

  2. #2
    Join Date
    Jun 2008
    Location
    Bangalore, India
    Posts
    53

    Default

    C programming is a very interesting thing if u go into Graphics in C (use Yeswath kanitkar book) . U can control our mouse u can create ur own paint proram using this C.

    using extern keyword we can use the varibles globally.

    C is not so flexible in regular exression handling .

    Almost all applications internally using C to manage the memory allocation. using malloc, calloc, realloc and free function u can manage the memory very efficiently.

    Pointers in C also very important . One variable can hold the address of the other.

  3. #3
    Join Date
    May 2009
    Posts
    6

    Default Its Easy,But Think Twice

    We All Know C Is A very Powerful Language From Which Everything Is Derived..
    But I Suggest You Study Languages Like VB,C# cause They Are Easy To Code With....
    It Will Take Time To call Windows API with C.....
    But VB,C# makes this simple
    This Is Just An Example Though...
    GOOd Luck Anyway....

  4. #4
    Join Date
    Jun 2008
    Location
    Bangalore, India
    Posts
    53

    Default

    Quote Originally Posted by smoggger View Post
    We All Know C Is A very Powerful Language From Which Everything Is Derived..
    But I Suggest You Study Languages Like VB,C# cause They Are Easy To Code With....
    It Will Take Time To call Windows API with C.....
    But VB,C# makes this simple
    This Is Just An Example Though...
    GOOd Luck Anyway....
    Hi dear,

    Still C is using to develop all real time applications and powerful Telecom billing software (We can't run those highly performance required softwares in Windows Server , It will crash very easily). VB is the outdated software so some few small application u may able to develop using that..

    Windows API will be modified in almost all windows releases so compatibility u can't ensure.

    But C applications u can run in all servers. Don't forget windows is mainly using as the client desktop 90% or more severs are either Solaris or Unix .

    If u can able to write programs in C u can study any other language very easily.

    best Regards
    Fazal C.A

  5. #5
    Join Date
    Jun 2009
    Posts
    5

    Default

    thanks :-D:-D:-D

  6. #6
    Join Date
    Jun 2009
    Posts
    4

    Default

    start programming with simpler languages like basic,foxpro rather than C

  7. #7
    Join Date
    Jun 2008
    Location
    Bangalore, India
    Posts
    53

    Default

    Quote Originally Posted by pvbinu View Post
    start programming with simpler languages like basic,foxpro rather than C
    if some people feel it is hard it doesn't mean that others are same... so please don't discourage others...

    C is simple language, if you think it is easy (psychological nature). Same way if you think basic or foxpro are hard it will be hard...

  8. #8
    Join Date
    Dec 2009
    Posts
    4

    Default

    it is between c# and asm, like c++ without the oop

  9. #9
    Join Date
    Aug 2010
    Posts
    5

    Arrow How to be a C programmer - part 1

    Hi Siva

    ok so the following is for people who want to be C programmers. It's of course impossible to master C through a couple of threads in a forum but I hope that you'll get the basics and enough of a grasp to move on from here. I assume you know nothing at all of programming.

    First a bit of theory. Not wanting to be boring but there are some nut and bolts you need to know to see the full picture. A computer program is a system and all systems have the following structure.

    input ---> [ processing ( and possibly storage ) ] ---> output

    Say, a calculator, you type in 2 + 2, that's the input. The calculator decides the answer is 4, that's the processing. The answer 4 is displayed on the screen, that's the output. Programs, whether simple or complicated, are all systems.

    Systems can be made out of subsystems. All subsystems have the same structure (input, processing, output), it's just that one's output will be the other's input. Subsystems in a C program are called functions. Think of functions as bricks to build a house.

    Computers only deal with 0 and 1. So theoretically you should open an editor and type in 0001110010... etc. That would not be practical. That's why we have computer languages like c. However a C program is text, not executable instructions, so a conversion will have to be done. The software doing the conversion is called a compiler. A compiler is itself a system.

    text file containing C program ---> [ compiling ] ---> executable binary file

  10. #10
    Join Date
    Oct 2010
    Location
    thailand
    Posts
    7

    Default

    I think it difficult

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •