Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Data Structure Practical, Study notes of Data Structures and Algorithms

Data Structure and Algorithm practicle of the Computer Science

Typology: Study notes

2020/2021

Uploaded on 02/13/2021

tau123
tau123 🇮🇳

8 documents

1 / 1

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
#include <iostream>
using namespace std;
int main(){
int a,b,c;
cout<<"Enter the value of A: ";
cin>>a;
cout<<"Enter the value of B: ";
cin>>b;
c = a+b;
cout<<"Addition is : "<< c << endl;
}

Partial preview of the text

Download Data Structure Practical and more Study notes Data Structures and Algorithms in PDF only on Docsity!

#include using namespace std; int main(){ int a,b,c; cout<<"Enter the value of A: "; cin>>a; cout<<"Enter the value of B: "; cin>>b; c = a+b; cout<<"Addition is : "<< c << endl; }