Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Learn C!

Name: Anonymous 2005-02-19 5:56

For people who want to learn the C programming language I have two great sources for you
http://www.cs.cf.ac.uk/Dave/C/CE.html A book called C Programming printed in the 80's or 70's forget when.
http://www.cs.cf.ac.uk/Dave/C/CE.html This is one of the learn C sites but better.
All I can suggest is to pull long hours of the night, write the notes down in a note book and do the exercies. Learning on your own can be hard but you get use to it and you learn better this way. If you have any questions though try searching the internet to find the answers. Here is a example of a program I worte useing the C programming book. I have not learn all of the C language though..
#include <stdio.h>
#include <math.h>
//Evaluating Trigonometric Functions
int main(int argc, char *argv[])
{
  int x,y,output;
  float r;
  printf("Type in the X and Y points\n");
  scanf("%d,%d", &x, &y);
  r = sqrt((x*x) + (y*y));
  printf("The Sqareroot Equals: %.2f\n", r);
  printf("----------------------------\n");
  printf("sin = %d/%.2f\n", y, r);
  printf("cos = %d/%.2f\n", x, r);
  printf("tan = %d/%d\n", y, x);
  printf("csc = %.2f/%d\n", r, y);
  printf("sec = %.2f/%d\n", r, x);
  printf("cos = %d/%d\n", x, y);
  return 0;
}

Name: Anonymous 2008-02-05 9:37

>>33
I remember posting this.

Name: Anonymous 2008-02-05 16:08

>>41
I remember posting this.

Name: Anonymous 2008-02-06 19:29

>>42
I remember posting this.

Name: Anonymous 2010-12-06 21:29

[sup][#]\\[/#][/sup]Car whore//

Name: Anonymous 2011-01-31 22:31

bamping

Name: Anonymous 2011-01-31 23:23

[tt]tt[/tt]

Name: Anonymous 2011-02-01 14:03

>>28
Haha, wow, glad Im not the only one who learned DIV.
It was part of a "Game creation starter Kit" or something like that.
My "games" had the nasty habit to get very slow over time.
Did not even know that they added multicore stuff to the language.

Name: Anonymous 2011-02-03 2:23

Name: tray 2012-03-16 16:20

flagStuff|=1;

Name: Anonymous 2013-03-06 3:18

Learn C!

Name: Anonymous 2013-03-06 3:49

what for

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List