Search:

Type: Posts; User: Kaho

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,090

    erro opening a lib

    How can i fix this


    LINK : fatal error LNK1181: cannot open input file "grflib.lib"
  2. Which is better to start off in DirectX or OpenGL

    Which is better to start off in DirectX or OpenGL
  3. Replies
    5
    Views
    1,015

    I forgot to fix it up after i posted i found...

    I forgot to fix it up after i posted i found those errors after i posted sorry ^_^
  4. Replies
    5
    Views
    1,015

    Ok so if wanted to copy the whole file and save...

    Ok so if wanted to copy the whole file and save it in a arrary to write to another file somewhere else like a backup folder? would that work i got this code so far


    #include <stdio.h>

    int...
  5. Replies
    5
    Views
    1,015

    Creating backups...

    Would there be a way to open a file and the program wil ask u if u want to save it as a bak file? Would it be something similiar to fopen? for it opens it to read then saves as a file u designate it...
  6. Replies
    5
    Views
    1,149

    I fixed it But next time ill look carefully at...

    I fixed it But next time ill look carefully at what i type
  7. Replies
    5
    Views
    1,149

    > for ( i = 0; 1 < size; i++ ) Still works,...

    > for ( i = 0; 1 < size; i++ )

    Still works, it compiles and returns the repsonse i wanted it to return to me.
  8. Replies
    5
    Views
    1,149

    Getting first letter of name

    Ok i got this code so far but iam sorta stuck right now.



    #include <stdio.h>
    void strip_newline( char *str, int size )
    {
    int i;
    for ( i = 0; 1 < size; i++ )
    {
  9. Replies
    5
    Views
    1,637

    Yeah i figured out what was wrong heres the...

    Yeah i figured out what was wrong heres the finaly Version


    #include <stdio.h>
    #include <string.h>

    void strip_newline( char *str, int size )
    {
    int i;
    for ( i = 0; 1 < size; ++i )
  10. Replies
    5
    Views
    1,637

    NVM Fixed it

    NVM Fixed it
  11. Replies
    5
    Views
    1,637

    Sorry for all the posts but...

    Well thanks guys for the good tutorial i created my first program written with the basic knowledge of C but some bugs need to be worked out.

    Well heres my Program code:


    #include <stdio.h>...
  12. Thread: Creating a gui?

    by Kaho
    Replies
    12
    Views
    1,989

    Iam uisng Windows

    Iam uisng Windows
  13. Thread: Creating a gui?

    by Kaho
    Replies
    12
    Views
    1,989

    Creating a gui?

    Can somone link or name a few books that would help me create a GUI for a c code?
  14. Thread: Error

    by Kaho
    Replies
    5
    Views
    2,685

    Its all fixed and about the coutning issue i ment...

    Its all fixed and about the coutning issue i ment four but i hit 5 instead i was a little tired and didnt know what i was suppose to be doing.

    But anyways its all good now
  15. Thread: Tutorial

    by Kaho
    Replies
    2
    Views
    936

    Tutorial

    I was learning from the tutorial and noticed something wrong in this line:


    printf( "Your name is %d, letters long", strlen ( name ) );

    If u leave it like that I get When i enter my name as...
  16. Thread: Error

    by Kaho
    Replies
    5
    Views
    2,685

    Oh Thank u i was looking into that last night but...

    Oh Thank u i was looking into that last night but i was looking at something else
  17. Thread: Error

    by Kaho
    Replies
    5
    Views
    2,685

    Error

    I got my first program to work but it has a little bug in it.


    What Could be the problem? would i need a few more printfs?

    Here the code:


    #include <stdio.h>
  18. Replies
    2
    Views
    1,312

    Thanks :D

    Thanks :D
  19. Replies
    2
    Views
    1,312

    Multiple variables

    Would this be ok?


    if ( a, b, c, d == 1 || a, b, c, d == 2 || a, b, c, d == 3 || a, b, c, d == 4 || a, b, c, d == 5 ) { Or is this wrong with int a, b, c, d;
Results 1 to 19 of 19