https://raw.githubusercontent.com/ahiliation/beautifulwork-programmingpractice/master/simple_write-p2.c
Category Archives: C
Working With Files I
https://raw.githubusercontent.com/ahiliation/beautifulwork-programmingpractice/master/simple_write-p1.c
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] < …
posix_openpt – open a pseudoterminal device
FUNCTION IMPLEMENTATION int posix_openpt(int flags) { return open(“/dev/ptmx”, flags); } stitched (P) TO : A Model using the Function [ posix_openpt ]
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 …
Continue reading “Relating inside code which creates a text layer in GIMP”