This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

18 lines
337 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main () {
int val;
char str[20];
strcpy(str, "19489");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);
strcpy(str, "C course");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);
return(0);
}