Array program 3, Study notes of Computer Engineering and Programming

a c++ program

Typology: Study notes

2014/2015

Uploaded on 06/12/2015

engineer
engineer 🇵🇰

2 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
#include <iostream>
Using namespace std;
Int main ()
{
Float a[3]
a[0] = 11;
a[1] =12;
a[2]=13;
cout<<a[o] =<<a[0] <<endl;
pf2

Partial preview of the text

Download Array program 3 and more Study notes Computer Engineering and Programming in PDF only on Docsity!

#include Using namespace std; Int main () { Float a[3] a[0] = 11; a[1] =12; a[2]=13; cout<<a[o] =<<a[0] <<endl;

cout<<a[1]=<<a[1] <<endl; cout<<a[2]=<<a[2]<<endl; }