字符串右補零

想得到16位的數據進行加密,但時間戳獲取到的是10位,要求是右補零,不能左補零。 以下是一個自己嘗試成功的例子: #include <stdio.h> #include <time.h> #include <string.h> int main(void) {         time_t t;         char buf[16]={0};         t =time(NULL);  
相關文章
相關標籤/搜索