Click here to Skip to main content
15,906,574 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Restricting programs to parts of the screen Pin
Michael Dunn16-Nov-03 5:23
sitebuilderMichael Dunn16-Nov-03 5:23 
Generalhelp wanted, pdf file split operation Pin
NotProfessional15-Nov-03 20:19
NotProfessional15-Nov-03 20:19 
GeneralHelp me: need strategy for CrashLogs Pin
Peter Weyzen15-Nov-03 18:22
Peter Weyzen15-Nov-03 18:22 
GeneralRe: Help me: need strategy for CrashLogs Pin
Michael P Butler16-Nov-03 1:48
Michael P Butler16-Nov-03 1:48 
GeneralRe: Help me: need strategy for CrashLogs Pin
Peter Molnar16-Nov-03 2:34
Peter Molnar16-Nov-03 2:34 
GeneralRe: Help me: need strategy for CrashLogs Pin
Ceri16-Nov-03 22:44
Ceri16-Nov-03 22:44 
GeneralRe: Help me: need strategy for CrashLogs Pin
Peter Weyzen17-Nov-03 8:30
Peter Weyzen17-Nov-03 8:30 
GeneralHelp in assembler. Pin
Snyp15-Nov-03 15:10
Snyp15-Nov-03 15:10 
Does anyone know how to make this in assembler, you know using the asm partialy in the c++ file:
#include <iostream>
#include <iomanip>
#include <ctime>
using namespace std;

main()
{
int a = 1;
int b = a+1;
int c = b+1;
int d = c+1;
int e = d+1;
int f = e+1;
time_t start;
time_t end;

time(&start);
for (a=1;a <= 47;a++)
{
for (b=a+1;b <= 48;b++)
{
for (c=b+1;c <= 49;c++)
{
for (d=c+1;d <= 50;d++)
{
for (e=d+1;e <= 51;e++)
{
for (f=e+1;f <= 52;f++)
{
// cout << setw(8) << a << setw(8) << b << setw(8) << c << setw(8) << d << setw(8) << e << setw(8) << f <<endl;
}
}
}
}
}
}
time(&end);

system("cls");

cout << "started:" << ctime(&start);
cout << "ended:" << ctime(&end);
system("pause");

return 0;
}
I only need the looping in assembler. Smile | :)
NOTE: DON'T DO THIS IF YOU DON'T WANT TO!!!
OR IF YOU DON'T HAVE TIME!!!

Old United Airlines Brochure:
If you cannot read this please ask a superintendent to help you... Smile | :) LOL, for real!!!
GeneralRe: Help in assembler. Pin
Tim Smith15-Nov-03 16:21
Tim Smith15-Nov-03 16:21 
GeneralRe: Help in assembler. Pin
Snyp15-Nov-03 16:42
Snyp15-Nov-03 16:42 
GeneralRe: Help in assembler. Pin
Joe Woodbury15-Nov-03 18:45
professionalJoe Woodbury15-Nov-03 18:45 
GeneralRe: Help in assembler. Pin
Chris Richardson15-Nov-03 23:49
Chris Richardson15-Nov-03 23:49 
GeneralRe: Help in assembler. Pin
Snyp16-Nov-03 7:50
Snyp16-Nov-03 7:50 
GeneralRe: Help in assembler. Pin
Christian Graus16-Nov-03 16:19
protectorChristian Graus16-Nov-03 16:19 
QuestionHow do startup programs work. Pin
Snyp15-Nov-03 13:56
Snyp15-Nov-03 13:56 
AnswerRe: How do startup programs work. Pin
Antti Keskinen15-Nov-03 14:20
Antti Keskinen15-Nov-03 14:20 
GeneralRe: How do startup programs work. Pin
Snyp15-Nov-03 14:23
Snyp15-Nov-03 14:23 
GeneralRe: How do startup programs work. Pin
Antti Keskinen15-Nov-03 14:39
Antti Keskinen15-Nov-03 14:39 
QuestionGet the first sector of harkdisk in vc++ ? Pin
kendao15-Nov-03 13:38
kendao15-Nov-03 13:38 
AnswerRe: Get the first sector of harkdisk in vc++ ? Pin
Michael Gunlock16-Nov-03 5:54
Michael Gunlock16-Nov-03 5:54 
Questioncreate 100 button in dialog with code ? Pin
kendao15-Nov-03 13:34
kendao15-Nov-03 13:34 
AnswerRe: create 100 button in dialog with code ? Pin
Snyp15-Nov-03 14:23
Snyp15-Nov-03 14:23 
AnswerRe: create 100 button in dialog with code ? Pin
Antti Keskinen15-Nov-03 14:34
Antti Keskinen15-Nov-03 14:34 
GeneralC++ Question. Pin
WREY15-Nov-03 12:39
WREY15-Nov-03 12:39 
GeneralRe: C++ Question. Pin
Antti Keskinen15-Nov-03 14:50
Antti Keskinen15-Nov-03 14:50 

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.