码迷,mamicode.com
首页 > 其他好文 > 详细

实用技巧之while里面使用getchar或sleep函数

时间:2020-02-25 20:17:56      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:span   code   har   can   style   let   poi   实用   pre   

                                   我们经常需要打印一些变量的取值来调试程序,使用while(1)是常用的手段。

                                  

              while (1)
        {
            char letter = getchar();
            printf("test_point is %d \t\n", test_point);
            printf("test_point is %f \t\n", test_point);
            //printf("右移一些位数%d \t\n", (test_point & 0xff00) >> 16);
            //printf("hello world\n");
            //scanf("%d", &normal_point);
            printf(" letter is %c\n", letter);
        }




                 while (1)
        {
        
            printf("test_point is %d \t\n", test_point);
            printf("test_point is %f \t\n", test_point);
            Sleep(1000);
        }

 

                                    

 

实用技巧之while里面使用getchar或sleep函数

标签:span   code   har   can   style   let   poi   实用   pre   

原文地址:https://www.cnblogs.com/nowroot/p/12363212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!