Thread: C programs

  1. #1
    Registered User
    Join Date
    Feb 2013
    Posts
    1

    Thumbs up C programs

    Hello Friends,

    From this blog you can get most of programs related to c lanaguage i hope you will get your query from this blog.

    So view this link and join & share it.

    Core Programming Hub: C Program

    Thank You
    Nirav Gohel

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,667
    It's all "void main" TurboC centric information.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  3. #3
    Registered User loserone+_+'s Avatar
    Join Date
    Dec 2012
    Location
    Indonesia
    Posts
    112
    Quote Originally Posted by salem
    It's all "void main" TurboC centric information.
    lol very funny lol

  4. #4
    Registered User
    Join Date
    May 2012
    Posts
    1,066
    I've just looked at some string and linked list examples and I think it's better to ignore this site.

    Bye, Andreas

  5. #5
    Registered User
    Join Date
    Feb 2013
    Posts
    22
    It's really good, thanks for sharing it!!!

  6. #6
    Registered User
    Join Date
    May 2009
    Posts
    4,183
    Quote Originally Posted by loserone+_+ View Post
    lol very funny lol
    Quote Originally Posted by Salem View Post
    It's all "void main" TurboC centric information.
    Very accurate; look at this so called C linked list code
    Core Programming Hub: Linear Linked List In C

    Code:
    #include<conio.h>
    Code:
    void main()
    /* This is NOT C code !! */
    Code:
    n= new node;
    Tim S.
    Last edited by stahta01; 02-26-2013 at 07:52 AM.
    "...a computer is a stupid machine with the ability to do incredibly smart things, while computer programmers are smart people with the ability to do incredibly stupid things. They are,in short, a perfect match.." Bill Bryson

  7. #7
    Registered User
    Join Date
    Dec 2012
    Posts
    307
    i LOVE the fisrt program, the simplest one...

    Code:
    #include<stdio.h>
    #include<conio.h>
    
    int main()
    {
     clrscr();   // clears the output window
    
     printf("\n \"Hello World\"");    // prints the message
    
     getch();
    
     return 0;
    }
    seems the ONLY thing right is
    Code:
    #include<stdio.h>
    ...
    int main()
    {
    ...
    return 0;
    }
    LOL

  8. #8
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    that is truly an awful site. there is absolutely no excuse to use that old, pre-standard compiler. your examples are not relevant in the modern world.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 1
    Last Post: 11-09-2009, 07:03 AM
  2. 64 bit programs
    By learning in forum C++ Programming
    Replies: 17
    Last Post: 05-10-2007, 11:26 PM
  3. Help With Programs
    By The_Lone_Wolf in forum C++ Programming
    Replies: 0
    Last Post: 11-03-2005, 01:58 PM
  4. Can't think of any new programs.
    By fuh in forum C++ Programming
    Replies: 11
    Last Post: 12-16-2002, 03:43 PM
  5. Programs opening programs
    By LinuxPLC in forum C Programming
    Replies: 1
    Last Post: 11-21-2002, 12:50 PM

Tags for this Thread