Skip to content

Instantly share code, notes, and snippets.

View imsarfraaz's full-sized avatar

MasterLone imsarfraaz

View GitHub Profile
@imsarfraaz
imsarfraaz / Learning
Created April 25, 2021 13:01
Program that prints a text of 4 lines
/*Write a program that prints a text of 4 lines consisting of characters,
integer values and floating-point values using cout statement.*/
#include <iostream>
using namespace std;
int main()
{
int marks = 1000;
float avg = 90.43;
char grade = 'A';
cout << "I'm xyz: ";