Search:

Type: Posts; User: laczfinador

Search: Search took 0.01 seconds.

  1. Well, my original problem looks to solved. On the...

    Well, my original problem looks to solved. On the other hand, some other has arised, although they are not related to this thread. Thank you once more!
  2. Thank you for your answers so far! I will try...

    Thank you for your answers so far! I will try your suggestions and give feedback once I'm done - or struck. :P :)
  3. Hello! I could not find a way to edit the...

    Hello!
    I could not find a way to edit the original post, so here is the code in english:



    VeryBigNumber operator+(VeryBigNumber a, VeryBigNumber b ){
    //DEKLARÁCIÓK, INICIALIZÁCIÓ
    ...
  4. Overloaded operator+ chaining having some problems

    Hello world!
    I have an overloaded operator+, which behaves a bit strange. It workes flawlessly when chaining two operations at most, but gives a runtime error, when chaining more than two...
  5. Replies
    4
    Views
    3,896

    Thanks, I'll check it out. I would like it to be...

    Thanks, I'll check it out. I would like it to be platform-independent.
  6. Replies
    4
    Views
    3,896

    "real-time" user-input and graphics

    Hello world!
    I was wondering about what should I need to develop simple, ASCII graphics applications, that are "more interactive", than the standard input. What I mean is, like developing a...
  7. Replies
    10
    Views
    43,936

    Yes, well the code I posted here is "translated"...

    Yes, well the code I posted here is "translated" to english, for better ungerstanding, and I seemingly forgot to change that "szo" to "word", but in the actual code, it is all "szo"...but thanks for...
  8. Replies
    10
    Views
    43,936

    Hey there! Unfortunatelly, if I add a space to...

    Hey there!

    Unfortunatelly, if I add a space to the scanf format specifier, it causes another malfunctioning...after I altered the code, according to your suggestion, the scanf("%c ",letter)...
  9. Replies
    10
    Views
    43,936

    Why doesn't fgets() read my input?

    Hello there!
    I have been strolling about the threads, looking for similar problems, but haven't found an exact solution... everyone keeps telling, that fgets() should be used for getting user input,...
  10. Hello Adak and prog-bman! Your replies has saved...

    Hello Adak and prog-bman!
    Your replies has saved my day - or rather night, as it is 19:14 over here. I looked over the fact, that in former excersises, I worked with integer values, which did not...
  11. Hey there itCbitC! I altered the code,...

    Hey there itCbitC!

    I altered the code, according to your reply, and guess what... it still doesn't work! But what is more interesting, is that all the other functions work properly, the program...
  12. [SOLVED] Evaluation of structure's element against input not working!

    Hello World!

    Let me get straight to the point. Here's the code:



    void readfile(){
    char row[55];
    int n=0;
  13. Ouch! I can't believe I missed that - again! I...

    Ouch! I can't believe I missed that - again! I always forget that ampersand character, when working with arrays... anyways, thanks for the quick reply! Have a nice day man! I'll be on a lookout for...
  14. [SOLVED] Problems with assignin values to an array of structs...

    Hello World!

    I am trying to read the contents of a file, that stores information on incoming messages. Each message consists of two lines: the first containing information about the reception...
  15. Replies
    3
    Views
    6,424

    Greetings, and thanks fro the replies! The...

    Greetings, and thanks fro the replies!

    The strcpy() function did the job well, and it seems easy to use even. Wish everything couls be solved so easily...
  16. Replies
    3
    Views
    6,424

    [SOLVED] Assign an arrays values to another array

    Hello World!

    I have a file stream called "src" and I am reading in lines from that file. The file contains information about sms messages. The very first line tells us, how many messages are...
  17. Thanks a lot!

    Now, that is the kind of answer I was looking for! Thanks a lot everyone, for helping me out!
  18. Well, here's an example...

    Hm... I am trying to understand how does the next function works. It is from a SDL game programming tutorial.



    SDL_Surface *load_image(char filename[])
    {
    SDL_Surface* loadedImage=NULL;...
  19. pointer initializatin - where to put the asterisk?

    Hello there!
    I am puzzled by a question lately, to wich I can't find an answer. What is the difference between the next pointer initialization methods:


    int* pointer_name=NULL

    and


    int...
Results 1 to 19 of 19