What is Stack Smashing and where is the code returning value “20” from?

前端 未结 0 846
粉色の甜心
粉色の甜心 2021-01-22 11:58

Main Function

int main(){

    int a[5] = {123,13,42,35,34,534};
    
    int *p;
    p = (int *)malloc(7*sizeof(int));
    
    for(int i = 0; i < 6; i++)
            


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题