logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/strcpy.c

#include <stdio.h>
#include <string.h>

int main(){

	char a[30];
	char b[10];

	strcpy(a,"The dog is small");
	printf("src is %s\n", a);
	strcpy(b, a);
	printf("dest is %s\n", b);
}