Name: Joe Smith Age: 45years Gender: M Years of experience: 20 years
Addition of Two Numbers
Adding two numbers in programming is essentially the same as adding two numbers in general arithmetic. A significant difference is that in programming, you need to pay attention to the data type of the variable that will hold the sum of two numbers.
C++
C++ is a general-purpose hybrid language, which supports both OOPs and procedural language designed and developed by Bjarne Stroustrup. It began in 1979 as “C with Classes” at Bell Labs and first appeared in the year 1985 as C++. It is the superset of C programming language, because it uses most of the C code syntax. Due to its hybrid functionality, it used to develop embedded systems, operating systems, web browser, GUI and video games.
Create a library named programmerwhich describes a software programmer using the following properties. -FName: the programmer's first name(a string of 25 characters max)
-LName: the programmer's last name (a string of 25 characters max)
-Years: the programmer's number of years of experience.
-Age: the programmer's age.-Gender: the programmer's gender ('M' or 'F').
Write a header file ‘programmer.h’ whichcontains user defined structure representing a programmer(programmer_t) and functions to accomplish the following tasks:
-Read a programmer's properties.
-Compare two programmers years of experience.
-Print a programmer's properties as follows
(example):
Name: Joe Smith
Age: 45years
Gender: M
Years of experience: 20 years
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images