智慧是解决问题 大智慧是让问题不存在
教你一招 让你无需再面对奇怪的指针问题
详见这网页 有五本书可下载
https://software.intel.com/en-us/articles/intel-sdm
#include <stdio.h>
char format[] = "%s %s\n";
char hello[] = "Hello";
char world[] = "earth";
int main(int argc, char *argv[])
{
#ifdef _MSC_VER
__asm
{
mov eax, offset world
push eax
mov eax, offset hello
push eax
mov eax, offset format
push eax
call printf
}
#endif
#ifdef __GNUC__
asm(".intel_syntax noprefix");
asm("mov eax, offset world");
asm("mov eax, offset hello");
asm("push eax");
asm("mov eax, offset format");
asm("push eax");
asm("call printf");
endif
}
学甚番邦胡语 直接面向处理器母语吧 摆除指针 就从内联汇编开始
※ 引述《c10016338 (cwtyeahyeah)》之铭言:
: 如题
: 本鲁学店资工系啦,上学期学基础c++爽爽过,虽然也有学到一些指标,但因为是解题导
: 向,所以没很在意,想不到这学期的物件导向,才上到用指标写出二维阵列,就听到脑袋
: 空空,这样484该转系啦?
: ※ 八卦板务请到 GossipPicket 检举板询问
: ※ a.张贴问卦请注意,充实文章内容、是否有专板,本板并非万能问板。
: ※ b.一天只能张贴 "两则" 问卦,自删及被删也算两篇之内,
: ※ 超贴者将被水桶,请注意!
: ※ c.本看板严格禁止政治问卦,发文问卦前请先仔细阅读相关板规。
: ※ d.未满30繁体中文字水桶3个月,严重者以闹板论,请注意!
: ※ (↑看完提醒请删除ctrl + y)