Search:

Type: Posts; User: George M.

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. API gaming is direXt?! The book i think does...

    API gaming is direXt?!

    The book i think does use it, dont know where exactly but....

    So a prgoramm of DireXt is like a prgoramm in API?
  2. API gaming? Whats this? are you sure?

    API gaming? Whats this? are you sure?
  3. Its not using for the basic programming, but from...

    Its not using for the basic programming, but from what i understood, for the code to contact wi windows and so the input-output devices (speakers, aceess to audio-graphic files etc)
  4. My book by using C, API and DireXt teaches you...

    My book by using C, API and DireXt teaches you how to crete simple 2D games and inb the end a 3D pong game.

    So I have to learn API from a specific source?
  5. Its just that they appeared like twins to me. ...

    Its just that they appeared like twins to me.

    Thank you.
  6. Want to learn Windows API for Game Programming

    My book Beggining Game Programming http://ecx.images-amazon.com/images/I/41PF5gyWn%2BL._SL500_AA240_.jpg is based in C but uses also Windows API.

    As I'm about to finish the theory of C I want to...
  7. Is it a separate language? There are books...

    Is it a separate language?

    There are books learning it separatley?
  8. how is called the windows peogramming language? Powershell?

    My book about game programming (uses C as base) has a small introduction on Windows programming.

    I want to learn that language separately. Is it called powershell?

    example code


    #include...
  9. Unions. Except from Memory allocation do they have any difference from Structures?

    Is there any difference in unions from structures - except than memory allocation ?
  10. Replies
    14
    Views
    7,969

    This forces scanf to read only te first 9...

    This forces scanf to read only te first 9 characters?

    Handy!
  11. Replies
    14
    Views
    7,969

    So their actually objects like the classes from...

    So their actually objects like the classes from C++ just more specified and restricted
  12. Replies
    14
    Views
    7,969

    So whats actually the point of structures? ...

    So whats actually the point of structures?

    They are used for creating databases?
  13. Replies
    14
    Views
    7,969

    Its true. Initially i thought the same think...

    Its true.

    Initially i thought the same think but i saw that i could write more characters than 9.

    However with the latest test I see that you can write more characters, but it will store only...
  14. Replies
    14
    Views
    7,969

    I found that i should declare the structure this...

    I found that i should declare the structure this way


    struct user
    {
    char name[10];
    char surname[10];
    int age;
    };
  15. Replies
    14
    Views
    7,969

    well even if i put c its just the same

    well even if i put c its just the same
  16. Replies
    14
    Views
    7,969

    Error on scanf with structure

    Hi there! Wright now I am on Structures
    (More Info on My Learning Diary on My Blog)

    Why does the application crashes at this point? I've written the scanf form exactly like it is in the example...
  17. Replies
    16
    Views
    3,450

    oh......... so it appears where th "%" ares (how...

    oh......... so it appears where th "%" ares (how are they called?)

    So thats no a symbol to decalarate end of text but to declarate placing of a variable there wright?
  18. Replies
    16
    Views
    3,450

    Yes it shows only the first number I want the...

    Yes it shows only the first number

    I want the i to appear between those 2 texts not both i and matrix toghether

    But you confused me...

    Would be easier for me if you wrote the correct...
  19. Replies
    16
    Views
    3,450

    My bloodshed i have a feeling that doesnt shows...

    My bloodshed i have a feeling that doesnt shows warnings, just errors.
  20. Replies
    16
    Views
    3,450

    Of course! I have to put just the matrix name! ...

    Of course! I have to put just the matrix name!

    P.S.
    This complex form of printf is illegal?


    printf ("Cell %d",i,"is%d",matrix1[i]);
  21. Replies
    16
    Views
    3,450

    Eh guys this crashes! The programm runs but when...

    Eh guys this crashes! The programm runs but when I insert a value it says programm has to shut down!


    int a=0;
    int i;
    float b=3;
    int matrix1 [10]={0};
    for (i=0;...
  22. Replies
    16
    Views
    3,450

    yeah I understand, since the last cell of...

    yeah I understand, since the last cell of matrix[10] is 9 not 10

    Thanks

    P.S.
    These questions might be silly for troubling an entire forum but unlike C++, this time in C I dont want to leave...
  23. Replies
    16
    Views
    3,450

    What happens if you put ';' after for(...)?

    Look at this code


    for (a=0; a<10; a++)
    {
    printf ("%d",matrix1[a]);
    }


    for (a=0; a<10; a++);
  24. oh.. now i got it. So if its the main it...

    oh.. now i got it. So if its the main it terminates the programm. thank you!
  25. Does "return" always terminate the programm?

    I have the following code



    printf("Start. Give a\n");
    scanf("%d",&a);
    printf("\na is %d\n",a);
    if (a==2)
    {
    return a;
Results 1 to 25 of 34
Page 1 of 2 1 2