data.configuration file

/* Source Installer, Copyright (c) 2005,2006,2007 Claudio Fontana preferences.c – user choices saved in the preferences file 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 Free Software Foundation; either version 3 of the License, or (at your option) …

average finder

#include <stdio.h> main() { float real,user,sys,addition,entry,average; float entries; int i; addition=0; printf(“\n Entries\n”); scanf(“%f”,&entries); for (i=0;i<entries;i++) { printf("\n Entry\n"); scanf("%f",&entry); addition=addition+entry; } average=addition/entries; printf ("\nAverage Equals %f",average); }

Create the DIRECTORY(ies), if they do not already exist

source code /* On some systems, mkdir (“foo/”, 0700) fails because of the trailing slash. On those systems, this wrapper removes the trailing slash. Copyright (C) 2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published …