You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdio.h>
|
|
|
|
// 定义一个完全无操作的noop函数
|
|
void noop() {
|
|
// 此函数完全不执行任何操作
|
|
}
|
|
|
|
int main() {
|
|
// 仅调用noop函数
|
|
noop();
|
|
|
|
// main函数也不进行任何输出
|
|
return 0;
|
|
}
|