Click here to Skip to main content
15,886,137 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalerror C2679: binary '!=' : no operator found which takes a right-hand operand of type 'int' In VS2008 Pin
Andraw11119-Jul-12 4:20
Andraw11119-Jul-12 4:20 
GeneralRe: error C2679: binary '!=' : no operator found which takes a right-hand operand of type 'int' In VS2008 Pin
Chris Losinger19-Jul-12 4:27
professionalChris Losinger19-Jul-12 4:27 
GeneralRe: error C2679: binary '!=' : no operator found which takes a right-hand operand of type 'int' In VS2008 Pin
Stephen Hewitt19-Jul-12 4:27
Stephen Hewitt19-Jul-12 4:27 
GeneralRe: error C2679: binary '!=' : no operator found which takes a right-hand operand of type 'int' In VS2008 Pin
Andraw11119-Jul-12 4:35
Andraw11119-Jul-12 4:35 
Questionc++ code Pin
phineas kimathi19-Jul-12 2:46
phineas kimathi19-Jul-12 2:46 
AnswerRe: c++ code Pin
Richard MacCutchan19-Jul-12 3:21
mveRichard MacCutchan19-Jul-12 3:21 
AnswerRe: c++ code Pin
Rajesh R Subramanian19-Jul-12 3:34
professionalRajesh R Subramanian19-Jul-12 3:34 
AnswerRe: c++ code Pin
Software_Developer19-Jul-12 6:52
Software_Developer19-Jul-12 6:52 
The integer difference between a lowercase char and a uppercase char when subtracted is 32.
simply subtract the lowercase by 32 to get a uppercase char.

C#
#include <stdio.h>
#include <string.h>

int main(void)
{
	char strchr[32] = "the quick fox";
	int strlength=strlen(strchr);

        printf("Before\n" );
	printf("%s\n\n", strchr);
 
	for (int i=0; i<strlength; i++) 
	{
		if((strchr[i] >= 97) && (strchr[i] <= 122)) 
		{
			strchr[i] = strchr[i] -32;
			
		}
	}
        printf("After\n" );	 
	printf("%s\n\n", strchr);

return(0);

} 

GeneralRe: c++ code Pin
Richard MacCutchan19-Jul-12 22:20
mveRichard MacCutchan19-Jul-12 22:20 
SuggestionRe: c++ code Pin
David Crow20-Jul-12 2:29
David Crow20-Jul-12 2:29 
GeneralRe: c++ code Pin
Software_Developer20-Jul-12 3:30
Software_Developer20-Jul-12 3:30 
QuestionError happen when open file while migrate VC++ 6 to VS2008 Pin
Andraw11118-Jul-12 9:16
Andraw11118-Jul-12 9:16 
AnswerRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Albert Holguin18-Jul-12 9:47
professionalAlbert Holguin18-Jul-12 9:47 
GeneralRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Andraw11118-Jul-12 10:01
Andraw11118-Jul-12 10:01 
AnswerRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Albert Holguin18-Jul-12 11:35
professionalAlbert Holguin18-Jul-12 11:35 
GeneralRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Richard MacCutchan18-Jul-12 21:59
mveRichard MacCutchan18-Jul-12 21:59 
GeneralRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Andraw11119-Jul-12 3:29
Andraw11119-Jul-12 3:29 
GeneralRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Andraw11119-Jul-12 5:40
Andraw11119-Jul-12 5:40 
GeneralRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Andraw11119-Jul-12 6:17
Andraw11119-Jul-12 6:17 
GeneralRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
Andraw11119-Jul-12 6:25
Andraw11119-Jul-12 6:25 
AnswerRe: Error happen when open file while migrate VC++ 6 to VS2008 Pin
jschell20-Jul-12 7:15
jschell20-Jul-12 7:15 
Generalsearch for a word in a text file Pin
byank18-Jul-12 2:14
byank18-Jul-12 2:14 
QuestionRe: search for a word in a text file Pin
David Crow18-Jul-12 2:18
David Crow18-Jul-12 2:18 
AnswerRe: search for a word in a text file Pin
byank19-Jul-12 11:00
byank19-Jul-12 11:00 
GeneralRe: search for a word in a text file Pin
David Crow20-Jul-12 2:24
David Crow20-Jul-12 2:24 

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.