Search:

Type: Posts; User: devarishi

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Positioning of Text under Graphical Environment

    Using C++, how can we precisely display text/strings on the screen exactly where we want to?

    I am writing a very long C++ program, of course by making use of my own functions or sub routines, to...
  2. Replies
    3
    Views
    4,496

    Resolved!

    So, you have done your job quite efficiently and effectively! ;)
  3. Resolved!

    Hi,


    I think I fixed it. Thanks a lot to you all!

    Cheers!

    Dev.
  4. Okay, I compiled the program and the following...

    Okay, I compiled the program and the following warning message flagged:


    if ((str = fgets(str, size, stream)))

    Warning: TRYIT.CPP 37: Possibly incorrect assignment


    However, I ran the...
  5. Hi LaserLight, Why didn't you choose to make...

    Hi LaserLight,

    Why didn't you choose to make your name Light of Knowledge? Haha!! Well, thanks for your support. Now I am leaving for the day as my shift has ended. So, I will try it later on if I...
  6. Well, I have used flushall() after gets() and...

    Well, I have used flushall() after gets() and scanf() this time and it serves the purpose efficiently. However, I would like to eliminate the need of using flushall() at all.
  7. Well, I have tried getchar() also and it does...

    Well, I have tried getchar() also and it does the same thing as flushall() does but with the requirement of pressing one more key after pressing Enter when a value has been entered. Besides, if the...
  8. Hi, I just tried fgets instead of gets and as...

    Hi,

    I just tried fgets instead of gets and as it is used for file handling it doesn't serve the purpose I have set in the given program.

    Or could you please give an example?

    Thanks!
  9. Frustrated with the instablility of scanf() and gets() functions

    Well, when I run this program it works fine in the first run of it but from the second run it begins to annoy me (or the user):


    #include <stdio.h>
    #include <conio.h>
    #include <ctype.h>...
  10. Replies
    4
    Views
    5,988

    No, Laser Light, my text book doesn't explain the...

    No, Laser Light, my text book doesn't explain the code. It has simply stated what type of linked list are there and what they do. But it says nothing about how they work and are used.
  11. Replies
    4
    Views
    5,988

    Singly Linked List

    Here's a program which is found in my text boob of C. I don't know what and how it does the work. When I ran it, it had errors which I rectified somehow.



    #include <stdio.h>
    #include...
  12. Replies
    3
    Views
    4,496

    A Simple Illustration of Link List

    Hi,


    I am not getting Link List at all. Can anybody help me understand it? I have got an example program which is as follows:


    #include <stdio.h>

    struct list_el {
    int val;
  13. Replies
    5
    Views
    1,212

    Thanks for your help! But this program has got...

    Thanks for your help! But this program has got many errors when I compile it. You might have forgotten to try it.
  14. Replies
    160
    Views
    1,219,213

    Sticky: File Handling in C

    Hi,


    If you want a comprehensive and good example of file handling which involves all the things you have mentioned. Moreover, you will get some extras also. :) Just let me know if you want it.
  15. Replies
    10
    Views
    2,335

    Digital Display of Numbers Provided as Command Prompt Arguments

    IceDane, your program is amazing!


    For the rest of the users here, I would like to make this note:


    Save this program (for example 3d.c) and after compiling go to command prompt and change...
  16. Replies
    10
    Views
    2,335

    Well, I will come up with an example soon.

    Well, I will come up with an example soon.
  17. Replies
    10
    Views
    2,335

    3 Dimensional Array

    Can somebody give a good and simple example of a 3D Array displaying the provided values neatly on the console/screen so that one can easily understand how it is working?

    Example 1:



    int...
  18. Thread: system()

    by devarishi
    Replies
    14
    Views
    3,125

    The given below code doesn't display anything on...

    The given below code doesn't display anything on the console/screen.


    system("cmd /c dir");


    Well, my Path is also correct. I am using TC & TCPP (Turbo C++ ) compilers. However, now I have...
  19. Thread: system()

    by devarishi
    Replies
    14
    Views
    3,125

    Well, it is also not working. The same error...

    Well, it is also not working. The same error message, as given above, is there. :(
  20. Thread: system()

    by devarishi
    Replies
    14
    Views
    3,125

    Hi, "Nonportable pointer conversion" warning...

    Hi,


    "Nonportable pointer conversion" warning message is being flagged highlighting the code line:


    FILE *dir = popen("dir", "r");


    Just now I have tried it again and this time included...
  21. Replies
    5
    Views
    1,212

    Going Back to a Previous Field

    Well, when we have two or more instances of the scanf() or of the gets() functions, at any level we may need to go back to a previous one at run time to edit what we entered before as we do it on any...
  22. Thread: system()

    by devarishi
    Replies
    14
    Views
    3,125

    Displaying the contents of a text file

    Hi,


    Thanks for your post but it's not what I wanted to do. I want to display the contents of a folder containg files and folders by running the DIR command of DOS.

    However, your program's...
  23. Replies
    4
    Views
    1,398

    I have come across an example but it is meant for...

    I have come across an example but it is meant for C#

    Link: http://www.codeguru.com/csharp/.net/net_general/tipstricks/article.php/c6933
  24. Replies
    9
    Views
    6,605

    Hi Adak, That's great! Well, I am also using...

    Hi Adak,


    That's great! Well, I am also using Windows XP.
  25. Thread: system()

    by devarishi
    Replies
    14
    Views
    3,125

    system()

    The function system() can be used for executing a DOS Command or Application from inside an executing program.

    Exaple:


    #include <stdio.h>
    #include <stdlib.h>

    void main() {
Results 1 to 25 of 36
Page 1 of 2 1 2