Search:

Type: Posts; User: ZMerlin

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,270

    Please clarify

    When you talk about the object moving across the screen...

    Is it...

    An ASCII box is moving from the left of the screen to the right. When the user presses a key, the program should beep for...
  2. Replies
    3
    Views
    1,331

    This will help you

    You can download Turbo C++ Version 1.01 or was it 2.01... at
    www.c-for-dummies.com/compilers/

    Look under "The Oldiest and Moldiest of them all!"

    If you can't find it, or need help installing,...
  3. Replies
    5
    Views
    2,574

    This is something you could try

    Most C/C++ Compilers highlight code that is not run, and variables that are initialised, but never used.

    Even compilers as old as Turbo C 1.02 warn you if a variable is intialised and not used.
    ...
  4. Replies
    2
    Views
    1,352

    I have your answer

    This will do it for you.

    #include <stdio.h>

    void main()
    {
    int i;

    printf("Enter the number : ");
    scanf("%d", &i);
  5. Thread: %f

    by ZMerlin
    Replies
    14
    Views
    1,122

    This information may clarify

    With regards to your last post, juss consider %f as double.

    %f IS double, and you have learned double. Leave it at that.

    "I haven't learned float yet"

    You never will, it does not exist....
  6. Thread: Char input

    by ZMerlin
    Replies
    3
    Views
    2,059

    I have the answer

    I guarantee this will work for you.

    #include <conio.h>

    void main()
    {
    getch();
    }
  7. Thread: File

    by ZMerlin
    Replies
    7
    Views
    1,324

    This might help... simple code

    Here's the simple code I use, that doesn't utilise fscanf...

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

    void main()
    {
    FILE *streamer;
    char stuff[201];
    int...
  8. Thread: Help

    by ZMerlin
    Replies
    3
    Views
    1,224

    I have your answer

    This is a great site with descriptions regarding where you can get Basic C Compilers.

    There is a link where you can download Turbo C/C++ Version 2.01

    If that isn't quite your taste, there is...
  9. Replies
    6
    Views
    1,374

    What about...

    Hey, has everyone forgotten good 'ol Mosaic?

    Now that was a DOS Web Browser and a half.
  10. Replies
    3
    Views
    1,993

    Give me more info...

    When you 'Run' some code in Turbo C or whatever compiler you are using, it is merely going through and executing the code.

    When you 'Build' some code in Turbo C or whatever, you are creating an...
  11. Replies
    3
    Views
    5,606

    I have the answer

    I know exactly what the problem is, had this one myself
    the other week.

    You aren't passing the strings appropriately,
    you need to change the function header (slightly).

    Email me and I'll send...
Results 1 to 11 of 11