?? 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 + -