Search:

Type: Posts; User: z0diac

Search: Search took 0.01 seconds.

  1. Replies
    28
    Views
    19,077

    Subtracting Two Pointers

    Here is a small piece of code.



    #include <stdio.h>

    int main(void)
    {
    int *p, *q;
  2. Replies
    3
    Views
    1,898

    Thanks

    Thanks a lot, Sebastiani! Your solution saved me. Thanks goes to Lurker also.
  3. Replies
    3
    Views
    1,898

    Multifile Programming

    I am doing a multifile program. There are two files first.cpp and second.cpp that I would like to include in the main file main.cpp. I have first.h and second.h, that I include using


    // in file...
  4. Replies
    3
    Views
    2,615

    saving screen to file

    This is a program to draw images, and save the contents of the screen to a file. A file of the specified size is being created, but it cannot be read back. I use Turbo C++ compiler in MS-DOS. Please...
  5. Replies
    1
    Views
    8,819

    C Graphics - Page Flipping

    This is a simple code for page flipping in C. The problem is, it works on a friend's computer, but not on mine. We both use the Turbo C++ compiler v3.0. The problem is that if 'i' is set to 0 inside...
Results 1 to 5 of 6