Since 4/25/2012 9:31:11 PM, mark_bluemel has written 1 articles and participated in 847 conversations. mark_bluemel signature: mark_bluemel
mark_bluemel's articles:
Items(1) /1
Signal to noise ratios2526 (7/26/2007 1:38:49 PM) comp.lang.c Can I suggest that people remember an old Malagasy proverb (which I learnt about elsewhere)? "In a fight with a fool it's a wise man who quits." usefully abbreviated to IAFWAFIAWMWQ... ... Mark
C programming problem143 (5/16/2013 8:50:22 PM) comp.lang.c Hello all,
Can anyone give me some insights on this programming problem for a project?
Have a program prompt the user for a filename to open. Change every alphabetic character in the file to a capital let... ericswalz(1)
access to file attributes via inode517 (1/30/2013 1:50:42 PM) comp.lang.c This is a listing named testinode.c:
1 #include
2 #include
3 int main()
4 {
5 char filename[256] = "test.txt";
6 struct stat filestat;
7 stat(filename, &filestat);
8 printf("st_ino is... cartercc(420)
Pointers #202815 (3/13/2013 1:57:16 AM) comp.lang.c Hi, I have started programming in C recently and started learning about poi=
nters. Insofar, all the material has been easy to digest and understand. Bu=
t pointers are really giving me a hard time! I've read... j.wagner1024(6)
meanning of the for loop812 (3/13/2013 4:41:12 PM) comp.lang.c Hello friends,
I encountered a C code(not by me, obviously) which uses:
gchar *key, *val, **kiter;
gint i;
char *keys[] = {"id", "type", "author", "year",NULL};
g_hash_table_iter_init (&iter, tabl... bnrj.rudra(343)
How to arrange some numbers13149 (3/15/2013 4:02:03 PM) comp.lang.c Hi, a simple question:
i want to arrange some int numbers; i want to store them
in an array and then print them on the screen.
Look below:
int numbers[10], arranged[10], i;
puts("Insert 10 int... 2970invalid(17)
passing var args as-is to a function107 (3/25/2013 9:44:24 AM) comp.lang.c i have a common function which takes variable parameters as an argument,
depending on the type (the first arg) i want to call the appropriate
function with rest of the param list, is there any way to do this ... sinbad.sinbad(155)
Initialization of arrays88 (4/16/2013 3:17:57 PM) comp.lang.c Hello all,
According to:
http://www.gnu.org/software/gnu-c-manual/gnu-c-manual.html#Initializing-Arr=
ays
>> You don't have to initialize all of the array elements. For example, thi=
s code initializes... diegotorquemada1(81)
preprocessor bug?51 (5/10/2013 6:37:25 AM) comp.lang.c Hi,
I'm trying to find a automated way of defining a macro, depending on another macro's value. More precisely, I try to define for "BAR" the larger power of 2 strictly smaller than "FOO", up to 2048.
Her... gilles(4)