- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
6 Posted Topics
Re: [QUOTE=dondajr;1113854]Hi everyone o/ How can I concatenate a no print char from the ASCII on my string? For example: I have the str1 = "Jhon" and str2 = "Lucas" I wanna concatenate the special char 01 ( SOH) between the str1 and str2. can anyone help me? I hope so..!! … | |
Re: [QUOTE=wot;1113585]Hey guys, I'm new to C and I am trying to find a way to create a file with the following array: [code] char peer1_0[] = { 0x0c, 0x4c, 0x08, 0x00 }; [/code] The original array has a lot more data, but I am just needing a simple example or … | |
I've been looking for the thread re swapping values of two string pointers but I couldn't findit and I don't know if it has already been solved. Assuming it's still on the lines waiting, I think I've got the simple code to solve it: [code=c]#include <windows.h> void swap(LPCTSTR*,LPCTSTR*); int WINAPI … | |
How can I obtain font properties thru a font file (*.otf;*.ttf or PostScript fonts)? | |
I'm Kurt Kubing, male, proudly married with a cute & beautiful 7 month old daughter. I've writing programs for a while but I think I still can't afford to call myself a professional programmer. I write apps mostly for my own use and sometimes to collect some money from some … | |
Re: I think there's only one reason why your code will never work as you expected: you declare read-only strings. Although you didn't declare it with the const keyword, declaring string that way makes your string variable untouchable. Here are my suggestions: You either write your code this way: 1.... char … |
The End.