Click here to Skip to main content
15,881,559 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: reply urgently Pin
Allah On Acid24-Feb-06 16:10
Allah On Acid24-Feb-06 16:10 
GeneralRe: reply urgently Pin
George L. Jackson24-Feb-06 17:32
George L. Jackson24-Feb-06 17:32 
GeneralRe: reply urgently Pin
prrusa25-Feb-06 0:38
prrusa25-Feb-06 0:38 
GeneralRe: reply urgently Pin
toxcct26-Feb-06 22:11
toxcct26-Feb-06 22:11 
AnswerRe: reply urgently Pin
toxcct26-Feb-06 22:14
toxcct26-Feb-06 22:14 
Questionreply urgently Pin
Ashishhcst200124-Feb-06 15:03
Ashishhcst200124-Feb-06 15:03 
Questionpost code urgently in 2-3 hours Pin
Ashishhcst200124-Feb-06 8:54
Ashishhcst200124-Feb-06 8:54 
AnswerRe: post code urgently in 2-3 hours Pin
Indivara25-Feb-06 1:21
professionalIndivara25-Feb-06 1:21 
ok. here you go.

#include "stdio.h"
#include "string.h"

int main(int argc, char* argv[])
{
	char str1[1024], str2[1024];
	printf("enter two words to find common letters: ");

	scanf("%s %s", str1, str2);

	if ( !strcmp(str1, "computer") && !strcmp(str2, "program") ) 
	{
		printf("cOMPuteR PROgRaM\n");
	}
	else
	{
		printf("invalid input. try example: \"computer program\"\n");
	}

	return 0;
}


Poke tongue | ;-P

- Indivara

"...This city desert makes you feel so cold.
It's got so many people but it's got no soul..."

- Gerry Rafferty, Baker Street

Questionreply urgently in 2-3 hours Pin
Ashishhcst200124-Feb-06 8:48
Ashishhcst200124-Feb-06 8:48 
AnswerRe: please reply urgently in 2-3 hours Pin
joepsy8-Mar-06 9:07
joepsy8-Mar-06 9:07 
QuestionCreateBitmap in C# Pin
Spykraft24-Feb-06 2:17
Spykraft24-Feb-06 2:17 
AnswerRe: CreateBitmap in C# Pin
toxcct24-Feb-06 2:23
toxcct24-Feb-06 2:23 
QuestionConversion from sbyte to byte Pin
Spykraft24-Feb-06 2:14
Spykraft24-Feb-06 2:14 
AnswerRe: Conversion from sbyte to byte Pin
toxcct24-Feb-06 2:22
toxcct24-Feb-06 2:22 
GeneralRe: Conversion from sbyte to byte Pin
Spykraft24-Feb-06 2:29
Spykraft24-Feb-06 2:29 
GeneralRe: Conversion from sbyte to byte Pin
toxcct24-Feb-06 2:34
toxcct24-Feb-06 2:34 
QuestionHow to use Excel in Managed C++ Pin
devinzhang23-Feb-06 6:57
devinzhang23-Feb-06 6:57 
AnswerRe: How to use Excel in Managed C++ Pin
prrusa26-Feb-06 8:29
prrusa26-Feb-06 8:29 
GeneralRe: How to use Excel in Managed C++ Pin
devinzhang28-Feb-06 14:20
devinzhang28-Feb-06 14:20 
QuestionResetContent() in VC.NET Pin
sunil440022-Feb-06 22:15
sunil440022-Feb-06 22:15 
AnswerRe: ResetContent() in VC.NET Pin
Red Stateler23-Feb-06 9:30
Red Stateler23-Feb-06 9:30 
Questiondate function Pin
ptvce22-Feb-06 20:58
ptvce22-Feb-06 20:58 
AnswerRe: date function Pin
toxcct22-Feb-06 21:59
toxcct22-Feb-06 21:59 
GeneralRe: date function Pin
ptvce23-Feb-06 1:20
ptvce23-Feb-06 1:20 
GeneralRe: date function Pin
toxcct23-Feb-06 1:38
toxcct23-Feb-06 1:38 

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.