Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
blue saver go my marshal green
//gcc 5.4.0 #include <stdio.h> int main(void) { printf("Hello, world!\n"); return 0; }https://play.google.com/store/apps/details?id=vrpatel0018.cprograms //Insertion sort #include<stdio.h> int main(){ int n, array[1000], c, d, t; printf("Enter number of elements\n"); scanf("%d", &n); printf("Enter %d integers\n", n); for (c = 0; c < n; c++) { scanf("%d", &array[c]); } for (c = 1 ; c <= n - 1; c++) { d = c; while ( d > 0 && array[d-1] > array[d]) { t = array[d]; array[d] = array[d-1]; array[d-1] = t; d--; } } printf("Sorted list in ascending order:\n"); for (c = 0; c <= n - 1; c++) { printf("%d\n", array[c]); } return 0 ; }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Lab 9 v0.6
18BCE2182 ASSESS_1 Q1-2
example of scanf and basic integer manipulation
swap_bitwise.c
C programming example implementing a function to set a specified bit in an int (from ECE 2534)
linear hybrid cellular automaton reversible random bit generator stream cipher
linkedlist
Little union method
1
Project 3 Part 1 v1.1
Please log in to post a comment.