新手问个比较菜的问题,希望大家不要见怪。。。

vvvwwvvv 2015-09-18 05:06:43
先上图


1、如何在命令行内显示完整的UInt64数值?
2、UInt64在内存中保存的顺序怎么会是反过来的?
...全文
202 5 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
vvvwwvvv 2015-09-18
  • 打赏
  • 举报
回复
引用 4 楼 caisong 的回复:
看下汇编就知道了
新手不会汇编啊
song_cai_csdn 2015-09-18
  • 打赏
  • 举报
回复
看下汇编就知道了
赵4老师 2015-09-18
  • 打赏
  • 举报
回复
Collapse AllExpand All Code: All Code: Multiple Code: Visual Basic Code: C# Code: Visual C++ Code: J# Code: JScript Visual Basic C# Visual C++ J# JScript Run-Time Library Reference Format Specification Fields: printf and wprintf Functions See Also Send Feedback This topic describes the syntax for format specifications fields, used in printf, wprintf and related functions. More secured versions of these functions are available, see printf_s, _printf_s_l, wprintf_s, _wprintf_s_l. For details on the individual functions, see the documentation for those specific functions. For a complete listing of these functions, see Stream I/O. A format specification, which consists of optional and required fields, has the following form: %[flags] [width] [.precision] [{h | l | ll | I | I32 | I64}]type Each field of the format specification is a single character or a number signifying a particular format option. The simplest format specification contains only the percent sign and a type character (for example, %s). If a percent sign is followed by a character that has no meaning as a format field, the character is copied to stdout. For example, to print a percent-sign character, use %%. The optional fields, which appear before the type character, control other aspects of the formatting, as follows: type Required character that determines whether the associated argument is interpreted as a character, a string, or a number (see the "printf Type Field Characters" table in printf Type Field Characters). flags Optional character or characters that control justification of output and printing of signs, blanks, decimal points, and octal and hexadecimal prefixes (see the "Flag Characters" table in Flag Directives). More than one flag can appear in a format specification. width Optional number that specifies the minimum number of characters output (see printf Width Specification). precision Optional number that specifies the maximum number of characters printed for all or part of the output field, or the minimum number of digits printed for integer values (see the "How Precision Values Affect Type" table in Precision Specification). h| l| ll| I| I32| I64 Optional prefixes to type-that specify the size of argument (see the "Size Prefixes" table in Size and Distance Specification). Security Note: Ensure that format specification strings are not user-defined. For example, consider a program that prompts the user to enter his name and stores the input in a string variable called name. To print name, do not do this: Copy Code printf( name ); // Danger! If name contains "%s", program will crash Note: Instead, do this: Copy Code printf( "%s", name ); See Also Concepts printf, _printf_l, wprintf, _wprintf_l printf_s, _printf_s_l, wprintf_s, _wprintf_s_l printf_p Positional Parameters Send feedback on this topic to Microsoft.
fly_dragon_fly 2015-09-18
  • 打赏
  • 举报
回复
大小头问题,
vvvwwvvv 2015-09-18
  • 打赏
  • 举报
回复
第一个问题已经解决,将%X换成%p就行了,真是太笨了我。。。

33,321

社区成员

发帖
与我相关
我的任务
社区描述
C/C++ 新手乐园
社区管理员
  • 新手乐园社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧