code snippet test.md

很容易看出来,的Markdown格式文档不支持代码高亮

我是一段C代码

#include 

int main() {
    /**
     * 定义一个指针变量
     * 指针变量是一个值为另一个变量的地址的变量
     * 在变量名称前加一个*用来声明指针变量
     * 指针变量的类型是指针指向的变量的值的类型
     * *用来读取指针变量存储的地址内存储的值
     */
    int *ip;
    int foo=20;

    /**
     * 把变量的地址赋值给指针
     */
    ip=&foo;

    printf("Address of foo variable: %p\n",&foo);
    printf("Variable stored in ip variable: %p\n",ip);

    /**
     * 访问指针变量中可用地址的值
     */
    printf("Value of *ip variable: %d\n",*ip);
    return 0;
}

我是一段PHP代码

 $haystack[$j + 1]) {
                $temp = $haystack[$j + 1];
                $haystack[$j + 1] = $haystack[$j];
                $haystack[$j] = $temp;
            }
        }
    }
    return $haystack;
}

$foo = [4,3,5,7,3,1];
print_r(bubbleSort($foo));

我是一段JS代码

console.log("Hello World!");

你可能感兴趣的:(code snippet test.md)