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
335 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main () {
float val;
char str[20];
strcpy(str, "3.141592653589793");
val = atof(str);
printf("String = %s, float = %.6f\n", str, val);
strcpy(str, "C course");
val = atof(str);
printf("String = %s, float = %.6f\n", str, val);
return(0);
}