Search:

Type: Posts; User: DarkKnight

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    2,444

    geninterrupt() or pokeb()

    I'm making my own graphics library so i was wondering which is the fastest method of pixel plotting. Interrupts or pokeb() memory access?
  2. Replies
    5
    Views
    1,594

    Try this: #include char a; ...

    Try this:

    #include <dos.h>

    char a;

    if(kbhit())
    {
    a = getch();
    cout<<a<<endl;
  3. Replies
    4
    Views
    1,436

    If you're using : #include...

    If you're using <string.h> :

    #include <string.h>

    char *Reverse(char *string)
    {
    int min = 0;
    int max = strlen(string)-1;
    char temp;
    while(min<max)
Results 1 to 3 of 3