首页 > 代码库 > 操作数,运算符,表达式

操作数,运算符,表达式

1.

# include<stdio.h>

#include<stdlib.h>

void main(){

int l_v1=23%3 //求余数2放在int l_v1里

system("pause");

}

2.

#include<stdio.h>

#include<stdlib.h>

void main(){

int l_v1=10;

l_v1++;// inc dword ptr[ebp-0x8];

//mov eax,[ebp-0x8];

//add eax,1

//mov [ebp-8],eax

system("pause");

}

 

3.

#include<stdio.h>

#include<stdlib.h>

void main(){

int l_v1=1, l_v2=2 // int l_v1=1; int l_v2=2

int l_v3=0

l_v1>l_v2 ?l _v3=l_v1:l_v3=l_v2

// if (l_v1>l_v2){

l_v3=l_v1;}

//else{ l_v3=l_v2;

}

system("pause");

}

操作数,运算符,表达式