User Tools

Site Tools


Sidebar

projects

ntr0 (due 20210825)
pct1 (bonus; due 20210819)
wcp1 (due 20210818)
pct2 (due 20210825)
wcp2 (due 20210825)
lob0 (due 20210901)
pct3 (bonus; due 20210901)
wcp3 (due 20210901)
led0 (due 20210908)
pct4 (due 20210908)
wcp4 (due 20210908)
led1 (due 20210915)
gfo0 (due 20210915)
pct5 (bonus; due 20210915)
wcp5 (due 20210915)
led2 (due 20210922)
pct6 (due 20210922)
wcp6 (due 20210922)
iwb0 (due 20210929)
pct7 (bonus; due 20210929)
wcp7 (due 20210929)
iwb1 (due 20211006)
pct8 (due 20211006)
wcp8 (due 20211006)
iwb2 (due 20211020)
pct9 (bonus; due 20211020)
bwp1 (bonus; due 20211020)
wcp9 (due 20211020)
clr0 (due 20211027)
gfo1 (due 20211027)
pctA (due 20211027)
wcpA (due 20211027)
clr1 (due 20211103)
pctB (bonus; due 20211103)
wcpB (due 20211103)
clr2 (due 20211110)
pctC (due 20211110)
wcpC (due 20211110)
gfo2 (due 20211117)
pctD (bonus; due 20211117)
pctE (bonus; due 20211201)
bwp2 (bonus; due 20211201)
EoCE (due 20211209)
haas:fall2021:c4eng:pointer_array

Pointer Arrays

1
#include <stdio.h>
#include <stdlib.h>
 
#define NUM_SCORES 5
#define SCORE0 87
#define SCORE1 92
#define SCORE2 97
#define SCORE3 83
#define SCORE4 79
 
int main()
{
    unsigned char *scores;
    float average;
 
    scores = (unsigned char *) malloc (sizeof(unsigned char) * NUM_SCORES);
    *(scores+0) = SCORE0;
    *(scores+1) = SCORE1;
    *(scores+2) = SCORE2;
    *(scores+3) = SCORE3;
    *(scores+4) = SCORE4;
 
    /* Please provide the equation to do average of the scores */
    //average = EQUATION TO DO AVERAGE
 
    /* Display the scores via array referencing and then the average.
     * %f can be used to display a floating point value. */
    //fprintf(stdout, "YOUR FORMATTED TEXT STRING", LIST OF VARIABLES);
 
    return(0);
}
haas/fall2021/c4eng/pointer_array.txt · Last modified: 2013/02/15 14:28 by 127.0.0.1