Search:

Type: Posts; User: Cnewb

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    2,657

    I tried this: void custom (int amount) {...

    I tried this:



    void custom (int amount)
    {
    int *custh, *custl, *delarray;
    int i;
    unsigned char pthold = inp(0x43), logical, sndhold = (0x61);
  2. Replies
    11
    Views
    2,657

    My instructor told us we could only use a 16-bit...

    My instructor told us we could only use a 16-bit compiler to make our programs that's why I'm using such an old one. Also this is for a C programming course so yeah I wouldn't be allowed to use the...
  3. Replies
    11
    Views
    2,657

    I tried this (*custh) =...

    I tried this



    (*custh) = custh[amount];
    (*custl) = custl[amount];
    (*delarray) = delarray[amount];


    it compiles but it does the same thing as my initial problem. ...
  4. Replies
    11
    Views
    2,657

    I tried that and it wouldn't compile here's the...

    I tried that and it wouldn't compile here's the complete code.



    #include <stdio.h>
    #include <conio.h>

    void timer ( int h,int l);
    void speaker (unsigned char sndh, int del);
    void custom...
  5. Replies
    11
    Views
    2,657

    Oh yeah I'm using Turbo C++ 3 to compile it

    Oh yeah I'm using Turbo C++ 3 to compile it
  6. Replies
    11
    Views
    2,657

    creating dynamic arrays

    I need help creating an array that will take the size of a an input value so far I've tried this



    void custom (int amount)
    {
    int *custh, *custl, *delarray;
    int i;
    ...
Results 1 to 6 of 6