Click here to Skip to main content
15,885,842 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Casting structures - another basic question Pin
Richard MacCutchan24-Dec-12 5:19
mveRichard MacCutchan24-Dec-12 5:19 
GeneralSOLVED Casting structures - another basic question Pin
Vaclav_24-Dec-12 8:04
Vaclav_24-Dec-12 8:04 
GeneralRe: SOLVED Casting structures - another basic question Pin
Erudite_Eric2-Jan-13 7:13
Erudite_Eric2-Jan-13 7:13 
QuestionHow to count pages in PDF file using VC++ Pin
shanmugarajaa23-Dec-12 18:00
shanmugarajaa23-Dec-12 18:00 
AnswerRe: How to count pages in PDF file using VC++ Pin
Richard MacCutchan23-Dec-12 22:04
mveRichard MacCutchan23-Dec-12 22:04 
AnswerRe: How to count pages in PDF file using VC++ Pin
Jijo.Raj26-Dec-12 23:29
Jijo.Raj26-Dec-12 23:29 
QuestionHow to implement C++ raw string literals in VIsual C++ 2010? Pin
Falconapollo22-Dec-12 18:03
Falconapollo22-Dec-12 18:03 
Questionproblems returning/printing poiner Pin
doughyi8u20-Dec-12 14:16
doughyi8u20-Dec-12 14:16 
I understand that the reason the ret variable will not print (it's at the end of the string when destination is passed) but can't figure out how to return destination out of the my_strcpy() function. I can make this work using array notation but not pointer arithmetic. Here's the code in question:
C++
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

char *my_strcpy(char *, const char *);

int
main()
{
	char *strA = "This is a string";
	char *strB;
	char *ret;

	strB = malloc(strlen(strA)+1);
	ret = my_strcpy(strB, strA);
	puts(ret);
	puts(strB);
	free(strB);
	return 0;
}

char *my_strcpy(char *destination, const char *source)
{
	while (*source != '\0')
	{
		*(destination++) = *(source++);
	}
	*destination = '\0';
	return destination;
}

AnswerRe: problems returning/printing poiner Pin
Jochen Arndt20-Dec-12 21:15
professionalJochen Arndt20-Dec-12 21:15 
AnswerRe: problems returning/printing poiner Pin
Richard MacCutchan20-Dec-12 22:47
mveRichard MacCutchan20-Dec-12 22:47 
GeneralRe: problems returning/printing poiner Pin
Jochen Arndt20-Dec-12 23:07
professionalJochen Arndt20-Dec-12 23:07 
GeneralRe: problems returning/printing poiner Pin
Richard MacCutchan21-Dec-12 0:19
mveRichard MacCutchan21-Dec-12 0:19 
QuestionC++ ownerdrawfixed combobox "header" Pin
NoviceEx19-Dec-12 2:49
NoviceEx19-Dec-12 2:49 
AnswerRe: C++ ownerdrawfixed combobox "header" Pin
jeron119-Dec-12 4:19
jeron119-Dec-12 4:19 
QuestionHow to make a project resolution independent.? Pin
mbatra3118-Dec-12 23:56
mbatra3118-Dec-12 23:56 
AnswerRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 0:29
professionalJochen Arndt19-Dec-12 0:29 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 0:39
mbatra3119-Dec-12 0:39 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 0:52
professionalJochen Arndt19-Dec-12 0:52 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 1:25
mbatra3119-Dec-12 1:25 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 1:33
professionalJochen Arndt19-Dec-12 1:33 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 1:44
mbatra3119-Dec-12 1:44 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 2:06
professionalJochen Arndt19-Dec-12 2:06 
AnswerRe: How to make a project resolution independent.? Pin
Alan Balkany19-Dec-12 4:25
Alan Balkany19-Dec-12 4:25 
GeneralRe: How to make a project resolution independent.? Pin
Kimcopeland2-Apr-21 16:18
Kimcopeland2-Apr-21 16:18 
QuestionASM with stams library of C ++ Pin
Gurunathkudalkar18-Dec-12 21:15
Gurunathkudalkar18-Dec-12 21:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.