-
BUBBLE SORTING USING C CODE
/* bubblesort ported to c by Jeffrin Jose T <ahiliation@yahoo.co.in> from bubble.php by detour@metalshell.com License : GPL. */ #include<stdio.h> #include<stdlib.h> main() { int array_size=400; int ran[1000]; int x,y,hold; for(x = 0; x < array_size; x++) ran[x]= rand(); for(x = 0; x < array_size; x++) { for(y = 0; y < array_size; y++) { if(ran[x] < […]
-
Relating inside code which creates a text layer in GIMP
/* GIMP – The GNU Image Manipulation Program * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * GimpTextLayer * Copyright (C) 2002-2004 Sven Neumann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the […]