Command line arguments in C

前端 未结 6 1706
时光说笑
时光说笑 2020-12-21 01:35

I have this program execute with the values 10,20,30 given at command line.

int main(int argc , char **argv)
 { 
  printf(\"\\n Printing the arguments of a         


        
6条回答
  •  北海茫月
    2020-12-21 02:18

    The way they taught you to count in school will not work in C. In C we count 0, 1, 2,...

提交回复
热议问题