C언어 float를 char*로 변환

Jmnote (토론 | 기여)님의 2019년 5월 12일 (일) 19:48 판 (→‎자리수 지정)

1 개요

C언어 float를 char*로 변환

2 원래 값 그대로

#define _GNU_SOURCE
#include<stdio.h>
int main() {
    char* s = "";
    asprintf(&s, "%g", 3.14159);
    printf("%s\n", s);
    // 3.14159
}
함수 작성
#define _GNU_SOURCE
#include<stdio.h>
char* float2charp(float f) {
    char* s = "";
    asprintf(&s, "%g", f);
    return s;
}
int main() {
    printf("%s\n", float2charp(0)); // 0
    printf("%s\n", float2charp(3)); // 3
    printf("%s\n", float2charp(-3)); // -3
    printf("%s\n", float2charp(3.14159)); // 3.14159
    printf("%s\n", float2charp(-3.14159)); // -3.14159
}

3 자리수 지정

#define _GNU_SOURCE
#include<stdio.h>
int main() {
    char* s = "";
    asprintf(&s, "%.3f", 3.14159);
    printf("%s\n", s);
    // 3.142
}
함수 작성
#define _GNU_SOURCE
#include<stdio.h>
char* float2charp(float f, int point) {
    char* format = "";
    asprintf(&format, "%%.%df", point);
    char* s = "";
    asprintf(&s, format, f);
    return s;
}
int main() {
    printf("%s\n", float2charp(0,3)); // 0.000
    printf("%s\n", float2charp(3,3)); // 3.000
    printf("%s\n", float2charp(-3,3)); // -3.000
    printf("%s\n", float2charp(3.14159,3)); // 3.142
    printf("%s\n", float2charp(-3.14159,3)); // -3.142
}

4 같이 보기

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}