Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
~671 People Reached

4 Posted Topics

Member Avatar for shylesh_kerala
Member Avatar for shylesh_kerala

[CODE]#include<stdio.h> #include<iostream.h> #include<conio.h> void main() { int size=5,i,j; clrscr(); //cout<<"Enter the length of array : "; // cin>>size; int *array = new int[size]; cout<<"Enter elements "<<endl; for(i=0;i<size;i++) cin>>array[i]; for(i=0;i<size-1;i++) { for(j=i+1;j<size;j++) { if(array[i]>array[j]) { int temp; temp=array[i]; array[i]=array[j]; array[j]=temp; } } } cout<<"Sorted array"<<"\n"; for(i=0;i<size;i++) cout<<array[i]<<' '; for(i=array[i];i>0;i--) { delete[] …

Member Avatar for Moschops
0
181
Member Avatar for themask18

"Let us C " by Yeshwant kanetkar.......... It is a good book for allllllll

Member Avatar for themask18
1
176
Member Avatar for d1e9v85

// Assignment 1, Question #1 #include <iostream.h> #include<conio.h> void sort(int *array , int size); void print(int *array , int size); void main () { int arraysize; cout << "Please enter the size of your integer array: " << endl; cin >> arraysize; int *array = new int[arraysize]; cout<<"Enter the values"; …

Member Avatar for NathanOliver
0
174

The End.