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, Assignments of Data Structures and Algorithms

chapter 3 of data structure and algorithm

Typology: Assignments

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<conio.h>
#include <iostream>
using namespace std;
int main(){
int i = 0;
while (i < 5) {
cout << i << "\n";
i++;
}
return 0;
}

Partial preview of the text

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

#include<conio.h> #include using namespace std; int main(){ int i = 0; while (i < 5) { cout << i << "\n"; i++; } return 0; }