Home > Back-end >  C language learning problems
C language learning problems

Time:12-28

#include

Int main (void)
{
Int c;

Int I=0;
While (1)
{
C='\ 0';
While (c!=13 & amp; & C!!!=27)
{
C=getchar ();

Printf (" % d \ n ", c);


}
If (c==27)
break;
i++;
Printf (" digital is % d \ n ", I);
}
Printf (" END ");
return 0;

}

Why can't the program to perform

CodePudding user response:

The original poster wants to realize what function, the above code is normal, no mistakes,
  • Related