- Barack Obama smoking marijuana during his school days.
- A boy who has a surprise for his crush.
- Michael Jackson as Charlie Chaplin, 1970s.
- Mother hides her face in shame after putting her children up for sale, Chicago, 1948
- Titanic preparing to leave port, 1912.
- Albert Einstein holding his own puppet, 1931.
- Eiffel Tower under construction.
- Job seeking in 1930s.
- A young girl plays the game of chess with the chimpanzee at London Zoo, 1955.
- Charlie Chaplin performs in front of Federal Hall on Wall Street, 1918.
- Albert Einstein visiting the Grand Canyon in 1931.
- A soldier kissing his girl from the train, 1950.
BUBBLESORT #include<stdio.h> void bubble(int a[],int n); int i,j,temp,a[25],n; void main() { clrscr(); printf("\n\nEnter how many numbers you want to sort\n\n"); scanf("%d",&n); printf("\nEnter the numbers \n"); for (i=0;i<n;i++) { scanf("%d",&a[i]); } bubble(a,n); printf("\n\nFinal sorted list is "); for (i=0;i<n;i++) printf("%d ",a[i]); getch(); } void bubble(int a[],int n) { int k; for(i=0;i<n-1;i++) { printf("\n\n PASS->%d ",i+1); for(j=i+1;j<=n-1;j++) { if(a[i]>a[j]) { temp=a[i]; a[i]=a[j];
Comments
Post a Comment
IF YOU LIKE THE POST,PLEASE LIKE FACEBOOK PAGE BELOW.
KINDLY POST YOUR COMMENT BELOW.