/*	SNAKE.C
 *	by plehw
 *	Feb 12
...

C Snake / Nibbles clone in C ...

by plewh, February 08, 2012 02:05, 7 refactorings, tagged with c, snake, ncurses

Self taught coder looking f...

8365bdc327827e53dd6abfb772db5320 Talk
#include <stdio.h>

#define WRAP 10
...

C K&R 1-22: Fold long inp...

by Richard Holland, March 09, 2011 21:20, 1 refactoring, tagged with c, K&R

This code is related to K&R...

45e65d6770ffb3749879dc0d83f17437 Talk
/* Define the maximum password length */
#define MIN_PASSWORD_LENGTH 8
...

C Password gen in C with MD5 ...

by deepspring, January 14, 2011 20:38, 8 refactorings, tagged with c, password, generator, md5

I wanted to try my hand at ...

56438d61fd1c1b7d352a12c9b402f4a9 Talk
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
...

C md5-file.c

by https://www.google.com/accounts/o8/id?id=AItOawkaJfxdlVdOFdPHlhS4nKHGKNOFcokUd7I, December 26, 2010 01:27, 2 refactorings, tagged with c, md5, prettier

I've been messing around wi...

55502f40dc8b7c769880b10874abc9d0 Talk
#include <unistd.h>
#include <sys/types.h>
#include <pwd.h>
...

C chroot without root

by bcsd.myopenid.com, September 23, 2010 14:49, 2 refactorings, tagged with c, system, posix

I want to run a process in ...

6757caf55de0413ae0994293e001d465 Talk
#include <stdio.h>

main()
...

C Bizzbuzz

by thaostra.myopenid.com, June 24, 2010 22:58, 4 refactorings, tagged with c, concise, bizzbuzz

My knowledge of C is limite...

55502f40dc8b7c769880b10874abc9d0 Talk
int contains(const char* word, const char* pattern) {
    int pCount = 0, pLength = strlen(pattern);
    char i;
...

C String Searching Algorithm

by Andreas Grech, March 28, 2010 01:43, 12 refactorings, tagged with c, string search

I wrote the following funct...

C398dd0c2ca7d5281d0a83242a924e76 Talk
/*
 * =====================================================================================
 *
...

C Using semaphores in C and f...

by jarodluebbert.myopenid.com, March 24, 2010 07:28, 1 refactoring, tagged with c, concurrency, ipc, semaphores

Just posting this to check ...

3a5f66f6c3feb6092d375c3e145de0d4 Talk
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
...

C Simple SHA Hashing

by mdw7.blogspot.com, December 11, 2009 15:38, 1 refactoring, tagged with c, hash, SHA1, 5 bit

Dear All, I'm a new C progr...

55502f40dc8b7c769880b10874abc9d0 Talk
void freeArray(int **a, int m) {
    int i;
    for (i = 0; i < m; ++i) {
...

C Freeing memory of a Multidi...

by Andreas Grech, November 28, 2009 17:18, 2 refactorings, tagged with c, array, malloc, free

Is this the correct way to ...

C398dd0c2ca7d5281d0a83242a924e76 Talk
#include <stdio.h>
#include <stdlib.h>
...

C program i wrote to learn

by powdermilkman.myopenid.com, September 19, 2009 08:11, No refactoring, tagged with c, pthread

it works but i think i coul...

55502f40dc8b7c769880b10874abc9d0 Talk
void foo(char** array)
{
	*array = (char *)calloc(2, sizeof(char*));
...

C Initialize char array in fu...

by rem7.myopenid.com, July 08, 2009 22:33, 2 refactorings, tagged with c

How do you initialize an ar...

8339a3712739c903f06b8b9066500a63 Talk
/*
LANGUAGE_CHANGE
This plugin change the default language in Linux.
...

C language_change plugin for ...

by gmh2000.myopenid.com, April 28, 2009 16:08, No refactoring, tagged with c, plugin, linux, pidgin, language, change

This plugin works in my Kub...

55502f40dc8b7c769880b10874abc9d0 Talk
#include <stdio.h>

int f(char*s) { 
...

C C Puzzle for Fun

by steve.hanov.myopenid.com, March 13, 2009 02:58, 6 refactorings, tagged with c, fun, puzzle

Here's a puzzle I came up w...

D41d8cd98f00b204e9800998ecf8427e Talk
#include <stdio.h>
#include <stdlib.h>

...

C Read specific range of line...

by rem7.myopenid.com, March 12, 2009 05:12, 3 refactorings, tagged with c, file input

Hi I'm trying to make a pro...

8339a3712739c903f06b8b9066500a63 Talk
char **split (char *string, char sep, char escape) {

    char **ret = NULL;
...

C A Java-like function split

by Fran, September 16, 2008 08:32, 3 refactorings, tagged with c, split, strings

This function splits a stri...

3c50320adac71693cef577a5dbd3d4d4 Talk
#include <stdio.h>
int main ()
{
...

C Int or Double/Float ?

by Tanino Rulez, February 20, 2008 00:11, 1 refactoring, tagged with c, int, double, float

Dato un numero,restituisce ...

D8e099f752011ec60e809a733ef32a7e Talk
int socket_read_line_alloc(int sock, char** out) {
        /* current buffer size */
        unsigned int size = 128;
...

C Socket read line in C

by bugmenot2.myopenid.com, December 06, 2007 22:13, 6 refactorings, tagged with c, sockets

I don't like the char** out...

55502f40dc8b7c769880b10874abc9d0 Talk