Click here to Skip to main content
15,791,050 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Beginner's Question 2 Pin
UKM_Student14-Sep-09 0:48
UKM_Student14-Sep-09 0:48 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 6:40
David Crow11-Sep-09 6:40 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 6:45
UKM_Student11-Sep-09 6:45 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 6:54
David Crow11-Sep-09 6:54 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 7:16
UKM_Student11-Sep-09 7:16 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 7:21
David Crow11-Sep-09 7:21 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 7:26
UKM_Student11-Sep-09 7:26 
GeneralRe: Beginner's Question 2 Pin
David Crow11-Sep-09 7:32
David Crow11-Sep-09 7:32 
UKM_Student wrote:
char Letter1,counter=1,Letter,a;


char Letter1 = 'A';
UKM_Student wrote:
while((counter<=26))
{
Letter1=a;
Letter=Letter1+1;
counter++;
}
cout<<letter;< blockquote="">

while (Letter1 <= 'Z')
{
    cout << Letter1 << endl;
    Letter1++;
}


"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons


GeneralRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 7:38
UKM_Student11-Sep-09 7:38 
GeneralRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 6:27
UKM_Student11-Sep-09 6:27 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 6:35
David Crow11-Sep-09 6:35 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 6:44
UKM_Student11-Sep-09 6:44 
QuestionHow to control the size of MessageBox Pin
Software200711-Sep-09 4:21
Software200711-Sep-09 4:21 
QuestionRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 4:44
David Crow11-Sep-09 4:44 
AnswerRe: How to control the size of MessageBox Pin
Software200711-Sep-09 6:24
Software200711-Sep-09 6:24 
QuestionRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 6:26
David Crow11-Sep-09 6:26 
AnswerRe: How to control the size of MessageBox Pin
Software200711-Sep-09 6:32
Software200711-Sep-09 6:32 
GeneralRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 6:47
David Crow11-Sep-09 6:47 
GeneralRe: How to control the size of MessageBox Pin
Software200711-Sep-09 6:59
Software200711-Sep-09 6:59 
AnswerRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 7:00
David Crow11-Sep-09 7:00 
GeneralRe: How to control the size of MessageBox Pin
Software200711-Sep-09 7:02
Software200711-Sep-09 7:02 
AnswerRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 7:03
David Crow11-Sep-09 7:03 
GeneralRe: How to control the size of MessageBox Pin
Software200711-Sep-09 7:06
Software200711-Sep-09 7:06 
AnswerRe: How to control the size of MessageBox Pin
Richard MacCutchan11-Sep-09 5:23
mveRichard MacCutchan11-Sep-09 5:23 
AnswerRe: How to control the size of MessageBox Pin
Joe Woodbury11-Sep-09 7:10
professionalJoe Woodbury11-Sep-09 7:10 

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.