summaryrefslogtreecommitdiff
path: root/wk4/lect/copy.c
blob: 4d442c5d830fbfe69ba08564ff1dadbd5dd43048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <cs50.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(void)
{
    char *s = get_string("s: ");

    char *t = malloc(strlen(s) + 1);
    if (t == NULL)
    {
        return 1;
    }

    for (int i = 0, n = strlen(s); i <= n; i++)
    {
        t[i] = s[i];
    }

    if(strlen(t) > 0)
    {
        t[0] = toupper(t[0]);
    }

    printf("%p\n", s);
    printf("%p\n", t);
}