Search:

Type: Posts; User: _Rami_

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    15,651

    here is a very simple program that writes a...

    here is a very simple program that writes a charter on the screen non stop untill u enter 'q'


    #include <iostream.h>
    #include <conio.h>
    void main()
    {
    char c='1';
    while (c!='q')
    {
  2. Replies
    7
    Views
    15,651

    There is a very simple way to use this: char...

    There is a very simple way to use this:


    char c='1';
    while (c!='q') // or anything else u want to use to exit loop
    {
    if (kbhit()) c=getch(); // this will require the conio.h library
    }
    ...
  3. Replies
    1
    Views
    1,825

    use of graphics in windows borland c++

    few years ago when I was using the dos borland (with the blue screen) I used the BGI graphics to program some nice and small games such as popkoren, tetris, snake, etc... I have been away from...
Results 1 to 3 of 3