User Tools

Site Tools


Sidebar

projects

wcp1 (due 20240828)
wcp2 (due 20240904)
pct0 (bonus; due 20240905)
pct1 (bonus; due 20240905)
pct2 (due 20240905)
abc0 (due 20240906)
gtf0 (due 20240911)
pct3 (bonus; due 20240911)
wcp3 (due 20240911)
dtr0 (due 20240918)
pct4 (due 20240918)
wcp4 (due 20240918)
pct5 (bonus; due 20240925)
stl0 (due 20240925)
wcp5 (due 20240925)
gfo0 (due 20241002)
pct6 (due 20241002)
stl1 (due 20241002)
wcp6 (due 20241002)
pct7 (bonus; due 20241009)
ptb0 (due 20241009)
wcp7 (due 20241009)
haas:fall2024:c4eng:pointer_arrays_char_input

char input with pointer arrays

1
#include <stdio.h>
#include <stdlib.h>
 
int main()
{
    char *initials, i = 0;
 
    name = (char *) malloc (sizeof(char) * 4);
 
    fprintf(stdout, "Enter a 3 character set of initials and hit ENTER: ");
    *(initials+i) = fgetc(stdin);
    i = i + 1;
    *(initials+i) = fgetc(stdin);
    i = i + 1;
    *(initials+i) = fgetc(stdin);
    i = i + 1;
    *(initials+i) = fgetc(stdin);
 
    fprintf(stdout, "You entered %s\n", initials);
 
    return(0);
}
haas/fall2024/c4eng/pointer_arrays_char_input.txt · Last modified: 2013/02/15 16:06 by 127.0.0.1