码迷,mamicode.com
首页 > 其他好文 > 详细

小代码,大错误

时间:2018-05-29 01:40:14      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:space   stream   image   IV   分享图片   技术   pac   分享   ret   

第一个:Bus error

#include <stdio.h>
int main()
{
    short a ;

    scanf("%d",&a);
    printf("\n a= %d\n",a);

    return 0;
}

技术分享图片

 

第二个 Illegal Instruction

#include <iostream>  
using namespace std;  
  
int main()  
{  
    string s = "123";  
    printf("xxxx is %s", s);  
}  

技术分享图片

这里其实应该是一个Illegal instruction的错误。

 

小代码,大错误

标签:space   stream   image   IV   分享图片   技术   pac   分享   ret   

原文地址:https://www.cnblogs.com/crazyghostvon/p/bigIssue.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!