C On Extracting directory, filen...

by nixen, August 02, 2010 14:39

I would like to exchange li...

928b47489462b9301d8e7026d9b074cf Talk

C On Extracting directory, filen...

by Maskit, July 29, 2010 16:45

it was very interesting to ...

928b47489462b9301d8e7026d9b074cf Talk

C On Extracting directory, filen...

by Fu86, July 06, 2010 15:15

In my opinion, the extensio...

Ee0505bbd355292778077fb662c88f13 Talk

C On Extracting directory, filen...

by Ants, July 06, 2010 10:32

You're welcome, @Navaneeth....

F9a9ba6663645458aa8630157ed5e71e Talk

C On Extracting directory, filen...

by Navaneeth, July 05, 2010 18:07

Excellent @Ants. Very cleve...

Avatar Talk
1
2
3
4
typedef struct
{
    char * directory;
...

C On Extracting directory, filen...

by Ants, July 05, 2010 11:25 Star_fullStar_fullStar_fullStar_fullStar_full

The same way you found the ...

F9a9ba6663645458aa8630157ed5e71e Talk

C On Extracting directory, filen...

by Navaneeth, July 05, 2010 08:36

@Ants - Thanks for the sugg...

Avatar Talk

C On Extracting directory, filen...

by Ants, July 05, 2010 08:00

In general, I agree with he...

F9a9ba6663645458aa8630157ed5e71e Talk
1
2
3
struct path_info {
...

C On Extracting directory, filen...

by Navaneeth, July 05, 2010 07:43

@heretic : Excellent sugges...

Avatar Talk

C On Extracting directory, filen...

by heretic, July 04, 2010 00:37

First of all, your memset c...

B04fb5484756984ac7875f37e5cb3320 Talk
1
2
3
4
#include <stdio.h>

int main(int argc, char **argv)
...

C On Bizzbuzz

by Adam, June 26, 2010 06:45
A8d3f35baafdaea851914b17dae9e1fc Talk
1
2
3
4
#include <stdio.h>

int main()
...

C On Bizzbuzz

by thaostra.myopenid.com, June 26, 2010 03:33

This was the result of expe...

Avatar Talk
1
2
3
4
#include <stdio.h>

int main()
...

C On Bizzbuzz

by fundamental, June 24, 2010 23:54

Fixing the missing non-bizz...

Avatar Talk
1
2
3
4
#include <stdio.h>

int main()
...

C On Bizzbuzz

by fundamental, June 24, 2010 23:51
Avatar Talk
1
2
3
4
#include<stdio.h>
#include<conio.h>
...

C On How to find max, min of thr...

by DINAKARAN, April 17, 2010 07:11
Ede382088e4b660ea3083f73cb525120 Talk
1
2
3
4
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
...

C On Traverse Directory

by Ants, April 14, 2010 06:34

An implementation that does...

F9a9ba6663645458aa8630157ed5e71e Talk

C On Traverse Directory

by Ants, April 13, 2010 17:48

Code doesn't compile using ...

F9a9ba6663645458aa8630157ed5e71e Talk
1
2
3
4
char* strreplaceinline(char* str, char const* old, char const* new) {
    assert(str);
    assert(new);
...

C On str_replace

by Eric Hoffman, April 13, 2010 05:34

A second pass after using t...

Avatar Talk
1
2
3
4
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
...

C On str_replace

by Eric Hoffman, April 07, 2010 05:52

A recursive implementation ...

Bc359a8417136e2a96298b66b4745e0b Talk
1
2
3
4
#include<stdio.h>
#include<conio.h>

...

C On How to find max, min of thr...

by aakashdeep26, April 03, 2010 08:07

Hi guyz...!
Here is the mos...

23f39c3d212219f619acc6689548c276 Talk

C On String Searching Algorithm

by soma, March 29, 2010 20:46

Ants: you're right: I chose...

Avatar Talk
1
2
3
4
#define SOMAS_CODE_HANDLES_NULLS 1

int AntsCrypticContains(const char * word, const char * pattern)
...

C On String Searching Algorithm

by Ants, March 29, 2010 05:36

@soma: Sorry, I goofed when...

F9a9ba6663645458aa8630157ed5e71e Talk

C On String Searching Algorithm

by soma, March 28, 2010 16:37

@Ants: Can you show me exac...

Avatar Talk

C On String Searching Algorithm

by Ants, March 28, 2010 08:33

soma: Your implementation i...

F9a9ba6663645458aa8630157ed5e71e Talk
1
2
3
4
int contains(const char* word, const char* pattern) {
	for(;;) {
		const char* w = word++;
...

C On String Searching Algorithm

by soma, March 28, 2010 06:42 Star_full

If you still want to write ...

Avatar Talk