What is the difference between the two sections of code?
Source: Internet
Author: User
What is the difference between the two sections of code? -- Linux general technology-Linux programming and kernel information. The following is a detailed description. The first code cannot be compiled:
# Include <ctype. h>
Main ()
{
Char str [] = "123c @ # FDsP [e? ";
Int I;
For (I = 0; tr
! = 0; I ++)
If (isalnum (str) Printf ("% c is an alphanumeric character \ n", str);
}
The second code has been compiled: # Include Main () { Char str [] = "123c @ # FDsP [e? "; Int I; For (I = 0; str ! = 0; I ++) If (isalpha (str) Printf ("% c is an alphanumeric character \ n", str); } Why? The error I can find is "tr" in the loop of the first code"Missing a character" s ", that is," str"", And the second error is in the first line. I haven't understood it for a long time!
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service