Question: c program 2. Task 1: Using Predefined Functions isalpha() and isdigit() Create a program that will use the following predefined functions: isalpha(),isdigit() NOTE: The program
c program

2. Task 1: Using Predefined Functions isalpha() and isdigit() Create a program that will use the following predefined functions: isalpha(),isdigit() NOTE: The program will accept input for name and age. The program will display a remark VALID when name contains letters only. Otherwise, the remark is INVALID The program will display a remark VALID when age contains numbers only. Otherwise, the remark is INVALID NOTE: Your source code must display any of the given sample output below. It means your source code should be flexible enough to meet any of the given sample output Your source code output must be identical to any of the given sample output. it means you have to strictly follow what are the displayed text, labels, casing of characters in the sample output Sample OUTPUT 1 Name: Naruto Remark: VALID Age: 20 Remark: VALID Sample OUTPUT 2 Name: Naruto Remark: INVALID Age: 20 Remark: VALID Sample OUTPUT 3 Name: Naruto Remark: VALID Age: 20.0 Remark: INVALID Sample OUTPUT 3 2. Task 1: Using Predefined Functions isalpha() and isdigit() Create a program that will use the following predefined functions: isalpha(),isdigit() NOTE: The program will accept input for name and age. The program will display a remark VALID when name contains letters only. Otherwise, the remark is INVALID The program will display a remark VALID when age contains numbers only. Otherwise, the remark is INVALID NOTE: Your source code must display any of the given sample output below. It means your source code should be flexible enough to meet any of the given sample output Your source code output must be identical to any of the given sample output. it means you have to strictly follow what are the displayed text, labels, casing of characters in the sample output Sample OUTPUT 1 Name: Naruto Remark: VALID Age: 20 Remark: VALID Sample OUTPUT 2 Name: Naruto Remark: INVALID Age: 20 Remark: VALID Sample OUTPUT 3 Name: Naruto Remark: VALID Age: 20.0 Remark: INVALID Sample OUTPUT 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
