Search Results

5
votes

Painless way to trim leading/trailing whitespace in C?

Here's one that shifts the string into the first position of your buffer. You might want this behavior so that if you dynamically allocated the string, you can still free it on the same pointer th …
4
votes

Convert console exe to dll in C

In Windows, you just call CreateProcess with the SoX command line. I don't know the Delphi bindings for Win32, bu …
3
votes

Printing pointers in C

Yes, your compiler is expecting void *. Just cast them to void *. /* for instance... */ printf("The value of s is: %p\n", (void *) s); printf("The direction of s is: %p\n", (void * …
2
votes

Animated Text Images in C

Here's an example to show you how to animate something. This is exactly what that Star Wars animation is. It's a gigantic text file split up into individual frames. Read the FAQ at the …
3
votes

Getting and printing chars in C?

The problem you're seeing is that it really is reading a character, but it's just not the character you're expecting. scanf does formatted input. The first time you call it, you're telling it to …
1
vote

Need better way to format a phone number in C.

Well I guess I'm just too slow. Nothing clever about this over memmove(), but it shows how you can have a loop and still take all those comparisons out of the inside: char *formatP …
1
vote

Simple program adding “D” to output

Change the print line to this: printf("\n%d\n", nl); Then you'll see that when you hit ctrl-d, you get "^D" on the line. Only since you didn't press ctrl-D followed by Enter, then …
3
votes

C Right shift (Division) -> ROUND TOWARD ZERO. Help :’’(*

Do something conditionally depending on whether your value is positive or negative. if( value < 0 ) { -((-value) >> 3); } else { value >> 3; } …