📄 fig16_26.cpp
字号:
// Fig. 16.26: fig16_26.cpp
// Using strtoul
#include <iostream.h>
#include <stdlib.h>
int main()
{
unsigned long x;
char *string = "1234567abc", *remainderPtr;
x = strtoul( string, &remainderPtr, 0 );
cout << "The original string is \"" << string
<< "\"\nThe converted value is " << x
<< "\nThe remainder of the original string is \""
<< remainderPtr
<< "\"\nThe converted value minus 567 is "
<< x - 567 << endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -