📄 asciinum.c
字号:
#include <stdio.h>
#include <stdlib.h>
void main(void)
{
int int_result;
float float_result;
long long_result;
int_result = atoi("1234");
float_result = atof("12345.678");
long_result = atol("1234567L");
printf("%d %f %ld\n", int_result, float_result, long_result);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -