一 安装进度条:
1 #include <stdio.h> 2 #include <string.h> 3 #include <unistd.h> 4 5 void ProcBar() 6 { 7 int i = 0; 8 char proc[102]; 9 memset(proc, '\0', sizeof(proc)); 10 11 while(i <= 100) 12 { 13 //C语言格式控制时默认右对齐,所以要在前面加-变成左对齐 14 printf("[%-100s] [%d%%]\r", proc, i); 15 fflush(stdout);//刷新屏幕打印 16 proc[i] = '#'; 17 usleep(100000);//以微秒为单位的sleep 18 i++; 19 } 20 printf("\n"); 21 } 22 23 int main() 24 { 25 ProcBar(); 26 return 0; 27 }View Code
标签:11,10,C语言,有用,设计,include,proc From: https://www.cnblogs.com/jieruishu/p/16725610.html