Search:

Type: Posts; User: illidari

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,061

    Window Program

    I've been searching google and can't seem to find any decent site with a program that shows how to make a window.

    Anyone have any suggestions on where I can go?

    I know it isn't a simple thing...
  2. Replies
    1
    Views
    1,350

    Int = Integers which are whole numbers Which...

    Int = Integers which are whole numbers

    Which of those do you need the number to be a whole number and which do you need to make it have decimals.
  3. Replies
    2
    Views
    931

    Draw up some graphics: dots, the board, the...

    Draw up some graphics: dots, the board, the ghosts, your Wakka Wakka toon that you control.
    Sounds: You need that wakka wakka sound or it's not packman.
    Enemies need to chase you, so you need to...
  4. Replies
    24
    Views
    2,857

    Yeah that was why I am asking :). I am actually a...

    Yeah that was why I am asking :). I am actually a physics major and ALL of the internships within a realistic distance of my college are asking for C++, java, C#, fortran, opengl and other stuff.
    ...
  5. Replies
    24
    Views
    2,857

    Difference between saying I know C and C++

    Hi,

    I am currently in a computer science 1 course which is my second course in C programming. My university teaches object oriented programming in java. C++ I will never be formally taught within...
  6. I believe I am following what you are saying but...

    I believe I am following what you are saying but I am still confused on how the a.ptr-> word got a value equivalent to the a.num

    I can change a.num to another number and the if statement would...
  7. Struct delcaring a struct within itself question

    edit : ^^^ Title should be referring to a struct pointer, ty Stiltskin :)



    struct foo{
    int num;
    char *word;
    struct foo *ptr;
    };
    void func1(struct foo);
  8. Replies
    3
    Views
    3,557

    Row 0 ---- 1 Row 1 ---- ...

    Row 0 ---- 1
    Row 1 ---- 1 1
    Row 2 ---- 1 X 1
    Row 3 ---- 1 _ _ 1

    Okay so the first part of that is using r=2 c=1

    grid[2][1] which is...
  9. Replies
    3
    Views
    3,557

    Pascal Triangle

    #include <stdio.h>

    int main() {

    int pascaltri[11][11];
    int r, c;

    // Initialize beginning and end of each
    // row to 1.
    for (r=0; r<11; r++) {
  10. Replies
    4
    Views
    980

    Thank you good sir ^_^ That was quick.

    Thank you good sir ^_^ That was quick.
  11. Replies
    4
    Views
    980

    Illidari's Newb Question #1

    Okay I am trying to teach myself C programming :)

    I am sure I will have many questions lol :P


    So I am using notes and an example:


    #include <stdio.h>
    #include <math.h>
Results 1 to 11 of 11