请注意,ITCoder Blog 并不支持低于IE8的浏览器,为了获得最佳效果,请下载最新的浏览器,推荐下载 Chrome
公告:从明天起,做一个幸福的人。喂马,砍柴,周游世界

C 语言实现SM4算法 加密解密

国密 ITCoder 12128人
#include <string.h> #include <stdio.h> //#include "sm4.h" #includ...
阅读全文 0

C 语言实现SM4算法 加密解密

03-26 12128人

#include <string.h> #include <stdio.h> //#include "sm4.h" #includ...
阅读全文 0

C语言初级知识

ITCoder 2772人
int guessingGame(){ int chose=15; int guess=0; int count=3; printf("这是一个...
阅读全文 0

C语言初级知识

03-23 2772人

int guessingGame(){ int chose=15; int guess=0; int count=3; printf("这是一个...
阅读全文 0

返回值为指针类型的函数

ITCoder 2827人
//老习惯写个简单的例子比较好理解。 #include<stdio.h> //定义一个返回值为指针类型的函数 char *test(); ...
阅读全文 1

返回值为指针类型的函数

01-19 2827人

//老习惯写个简单的例子比较好理解。 #include<stdio.h> //定义一个返回值为指针类型的函数 char *test(); ...
阅读全文 1

指向函数的指针的用法

ITCoder 2710人
//简单的写个例子给大家讲解一下 #include<stdio.h> void test(); int main (){ ...
阅读全文 0

指向函数的指针的用法

01-19 2710人

//简单的写个例子给大家讲解一下 #include<stdio.h> void test(); int main (){ ...
阅读全文 0