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

Managed C++/CLI

 
GeneralRe: c++ program Pin
Member 148568768-Jun-20 9:46
Member 148568768-Jun-20 9:46 
GeneralRe: c++ program Pin
Eddy Vluggen8-Jun-20 9:50
professionalEddy Vluggen8-Jun-20 9:50 
GeneralRe: c++ program Pin
Member 148568768-Jun-20 10:01
Member 148568768-Jun-20 10:01 
GeneralRe: c++ program Pin
Member 148568768-Jun-20 10:09
Member 148568768-Jun-20 10:09 
GeneralRe: c++ program Pin
Richard MacCutchan10-Jun-20 6:19
mveRichard MacCutchan10-Jun-20 6:19 
GeneralRe: c++ program Pin
Eddy Vluggen10-Jun-20 5:11
professionalEddy Vluggen10-Jun-20 5:11 
AnswerRe: c++ program Pin
Patrice T31-Jul-20 13:57
mvePatrice T31-Jul-20 13:57 
QuestionStrings in C | The program gives wrong output on string composed of both Upper case and lower case (Logic : ASCII Comparision) Why? Pin
Member 148492461-Jun-20 3:37
Member 148492461-Jun-20 3:37 
//this program is to change the Upper case to lower and vice-versa
#include<stdio.h>
void main()
{char name[50];
int i;
gets(name);
for(i=0;name[i];i++)
{
if(65<=name[i]<=90)
name[i]=name[i]+32;
else if(97<=name[i]<122)
name[i]=name[i]-32;
}
puts(name);
}
AnswerRe: Strings in C | The program gives wrong output on string composed of both Upper case and lower case (Logic : ASCII Comparision) Why? Pin
Richard MacCutchan1-Jun-20 4:15
mveRichard MacCutchan1-Jun-20 4:15 
GeneralRe: Strings in C | The program gives wrong output on string composed of both Upper case and lower case (Logic : ASCII Comparision) Why? Pin
k50541-Jun-20 5:22
mvek50541-Jun-20 5:22 
GeneralRe: Strings in C | The program gives wrong output on string composed of both Upper case and lower case (Logic : ASCII Comparision) Why? Pin
Richard MacCutchan1-Jun-20 6:05
mveRichard MacCutchan1-Jun-20 6:05 
GeneralRe: Strings in C | The program gives wrong output on string composed of both Upper case and lower case (Logic : ASCII Comparision) Why? Pin
kalberts1-Jun-20 8:25
kalberts1-Jun-20 8:25 
GeneralRe: Strings in C | The program gives wrong output on string composed of both Upper case and lower case (Logic : ASCII Comparision) Why? Pin
Richard MacCutchan1-Jun-20 10:28
mveRichard MacCutchan1-Jun-20 10:28 
QuestionRun executable with arguments Pin
Erich Ruth3-May-20 4:04
Erich Ruth3-May-20 4:04 
AnswerRe: Run executable with arguments Pin
Richard MacCutchan3-May-20 4:14
mveRichard MacCutchan3-May-20 4:14 
AnswerRe: Run executable with arguments Pin
Victor Nijegorodov3-May-20 5:50
Victor Nijegorodov3-May-20 5:50 
QuestionVisual C++/CLI Pin
F_Square3-Apr-20 16:26
F_Square3-Apr-20 16:26 
AnswerRe: Visual C++/CLI Pin
Richard MacCutchan3-Apr-20 23:00
mveRichard MacCutchan3-Apr-20 23:00 
GeneralRe: Visual C++/CLI Pin
F_Square7-Apr-20 19:05
F_Square7-Apr-20 19:05 
GeneralRe: Visual C++/CLI Pin
Richard MacCutchan7-Apr-20 22:30
mveRichard MacCutchan7-Apr-20 22:30 
QuestionDebugging ... not able to hit breakpoint. Pin
Member 1326109430-Mar-20 3:20
Member 1326109430-Mar-20 3:20 
AnswerRe: Debugging ... not able to hit breakpoint. Pin
Richard MacCutchan30-Mar-20 3:34
mveRichard MacCutchan30-Mar-20 3:34 
AnswerRe: Debugging ... not able to hit breakpoint. Pin
Stefan_Lang30-Mar-20 7:17
Stefan_Lang30-Mar-20 7:17 
QuestionGetWindowRect wrong dimensions Pin
lacir29-Mar-20 7:57
lacir29-Mar-20 7:57 
AnswerRe: GetWindowRect wrong dimensions Pin
Richard MacCutchan29-Mar-20 8:23
mveRichard MacCutchan29-Mar-20 8:23 

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.