Identify the error in this code ?
Identify if I use the typedef statement like the one below , will it produce an error ?
Typedef char str
//And then using it to create a string ,
str fun[80] ;
Or
Typedef char str[80]
str fun ;
Which one is right ?
Should I mention the size of the string in the typedef statement or is ok if I do the way i did above ?
@roger that was a typing error , auto capitalization by apple. Thank you for your answers , i hope I get marks for it !