Thread: How should i C to "C"

  1. #1
    Registered User
    Join Date
    Apr 2002
    Posts
    3

    Question How should i C to "C"

    Hi everyone,
    i am a new to line of computer sciences. and ofcourse new to "C". How should i study "C" . ???? I am also searching for quizes on "C", so that i can check myself. I have read the "cprogramming quizes" . i have not study C completly yet. And just have study printf ,scanf , loops ,conditions, opertors, array ,function( self made,not library), only two header files stdio.h & conio.h , and an introduction to pointers. i may be learning more about pointers in next days. Can you people help me to make my C strong as much as possible. Refer me quizez , ideas for which i can made programmes , tips etc.

    thanks
    Awais

  2. #2
    Unleashed
    Join Date
    Sep 2001
    Posts
    1,765
    Try the ever popular, Google.
    Last edited by Shadow; 04-30-2002 at 02:21 PM.
    The world is waiting. I must leave you now.

  3. #3
    Comment your source code! Lynux-Penguin's Avatar
    Join Date
    Apr 2002
    Posts
    533
    A great resource is the FAQ (which no one reads)
    and the C Refrence Card

    basically anything is usefull except stay away from complicated and unmaintainable code.

    Look up ANSI C for basic structure
    DBASEIV
    has some good stuph

    to get you started on your way
    Code:
    #include <stdio.h>
    int main(int argc, char* argv[])  // Start Main while accepting arguments
    {
    	printf("Hello World!\n");  // of course OUTPUT Hello, World to screen
    	if(argv[1])
    		printf("%s is what you typed after this",argv[1]);
    	return 0;
    }
    // Hope this doesn't get you confused or put you on the wrong path
    // it is complicated enough to get ur curiosity up high
    // I hope...
    //  remember FAQ is a GOOD thing
    Asking the right question is sometimes more important than knowing the answer.
    Please read the FAQ
    C Reference Card (A MUST!)
    Pointers and Memory
    The Essentials
    CString lib

  4. #4
    Unregistered
    Guest

    Talking

    thanks for posting that C reference card... been looking for something like that for several days

  5. #5
    Comment your source code! Lynux-Penguin's Avatar
    Join Date
    Apr 2002
    Posts
    533
    No problem, I have been waiting for days for anyone to see the damn thing.
    Asking the right question is sometimes more important than knowing the answer.
    Please read the FAQ
    C Reference Card (A MUST!)
    Pointers and Memory
    The Essentials
    CString lib

  6. #6
    Registered User
    Join Date
    Apr 2002
    Posts
    3
    Thank you very much Lynux. your suggestions are really helping me. all the best . bye

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Extern "C" problem
    By CodeBugs in forum C++ Programming
    Replies: 11
    Last Post: 06-10-2009, 09:14 AM
  2. extern "C"
    By Mario F. in forum C++ Programming
    Replies: 2
    Last Post: 09-06-2008, 05:51 AM
  3. Simple Snake Program Purely On "C"
    By jumbo2410 in forum C Programming
    Replies: 7
    Last Post: 07-30-2008, 07:16 AM
  4. error C2059 with extern "C"
    By Elysia in forum C++ Programming
    Replies: 7
    Last Post: 03-16-2008, 06:16 PM
  5. extern "C"
    By George2 in forum C++ Programming
    Replies: 19
    Last Post: 02-08-2008, 02:33 AM