Skip to content

Instantly share code, notes, and snippets.

View kunpengku's full-sized avatar
🎯
Focusing

fupeng kunpengku

🎯
Focusing
  • havenot
  • Beijing
View GitHub Profile
@kunpengku
kunpengku / for2
Created May 25, 2013 02:44
some usage of for
#include <stdio.h>
int main(void)
{
char i,j,k;
for(i = 0; i < 6; i++)
{
for(j = 'F',k = 0; j >= 'A',k <=i; j--,k++) //一个for里可以干多件事情,相反也行.
{