CALL-ME-OLIVIA / new-ideas-or-classic-ideas

1 stars 0 forks source link

链式访问 #11

Open CALL-ME-OLIVIA opened 1 month ago

CALL-ME-OLIVIA commented 1 month ago

//链式访问---把一个函数的返回值作为另一个函数的参数 //Return Value:On success, the total number of characters written is returned. int main() { printf("%d", printf("%d", printf("%d", 43))); return 0; }