Q, write a program to display:
You are 18 years old.
You are students of mathematics
Q.2: write a program to display the following output using a single cout statement.
Subjects Marks
Mathematics 90
Computer 80
English 70
Q.3: write a program which accepts a character and display its ASCII value.
1
Expert's answer
2016-01-19T07:40:20-0500
#include <iostream>
int main() { std::cout << "You are 18 years old\nYuo are students of mathematics\n"; return 0; }
Comments
Dear Sajid please write a new question. Best regards
Q.write a program to display the following output using a single cout statement. Subjects Marks Mathematics 90 Computer 80 English 70
Q: write a program which accepts a character and display its ASCII value.
Q, write a program to display: You are 18 years old. You are students of mathematics
Leave a comment