Click here to Skip to main content
15,889,176 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Decryption Routine needed. Pin
Prakash Nadar24-Jan-06 22:44
Prakash Nadar24-Jan-06 22:44 
QuestionDownloading in VC++ Pin
Vineethg23-Jan-06 22:14
Vineethg23-Jan-06 22:14 
AnswerRe: Downloading in VC++ Pin
Prakash Nadar24-Jan-06 0:46
Prakash Nadar24-Jan-06 0:46 
AnswerRe: Downloading in VC++ Pin
Aamir Butt24-Jan-06 1:33
Aamir Butt24-Jan-06 1:33 
AnswerRe: Downloading in VC++ Pin
Member 22716551-Feb-06 21:57
Member 22716551-Feb-06 21:57 
QuestionReading Strings Line by Line from Text Files Pin
Anu_Bala23-Jan-06 22:13
Anu_Bala23-Jan-06 22:13 
AnswerRe: Reading Strings Line by Line from Text Files Pin
Cedric Moonen23-Jan-06 22:22
Cedric Moonen23-Jan-06 22:22 
GeneralRe: Reading Strings Line by Line from Text Files Pin
Anu_Bala24-Jan-06 0:03
Anu_Bala24-Jan-06 0:03 
AnswerRe: Reading Strings Line by Line from Text Files Pin
Aamir Butt24-Jan-06 1:34
Aamir Butt24-Jan-06 1:34 
QuestionWhat is the size of an integer? Pin
vikas amin23-Jan-06 22:08
vikas amin23-Jan-06 22:08 
AnswerRe: What is the size of an integer? Pin
toxcct23-Jan-06 22:14
toxcct23-Jan-06 22:14 
void main(void) {
    printf("int   : %d\n", sizeof(int));
    printf("char  : %d\n", sizeof(char));
    printf("float : %d\n", sizeof(float));
}


will output :
int   : 4
char  : 1
float : 4


but notice this : an int is much dependant of the processor architecture than the OS. so, under Windows2000, it may be 4 bytes if the processor handles 32 bits ints, or 8 bytes if it handles 64 bits ints...



TOXCCT >>> GEII power
[toxcct][VisualCalc 2.20][VCalc 3.0 soon...]
GeneralRe: What is the size of an integer? Pin
Owner drawn23-Jan-06 22:23
Owner drawn23-Jan-06 22:23 
GeneralRe: What is the size of an integer? Pin
toxcct23-Jan-06 22:26
toxcct23-Jan-06 22:26 
GeneralRe: What is the size of an integer? Pin
vikas amin23-Jan-06 22:28
vikas amin23-Jan-06 22:28 
GeneralRe: What is the size of an integer? Pin
toxcct23-Jan-06 22:29
toxcct23-Jan-06 22:29 
GeneralRe: What is the size of an integer? Pin
vikas amin23-Jan-06 23:06
vikas amin23-Jan-06 23:06 
GeneralRe: What is the size of an integer? Pin
toxcct23-Jan-06 23:08
toxcct23-Jan-06 23:08 
GeneralRe: What is the size of an integer? Pin
Prakash Nadar24-Jan-06 17:43
Prakash Nadar24-Jan-06 17:43 
Questionchange groupbox color (MFC) Pin
waxie23-Jan-06 21:56
waxie23-Jan-06 21:56 
AnswerRe: change groupbox color (MFC) Pin
Owner drawn23-Jan-06 22:59
Owner drawn23-Jan-06 22:59 
GeneralRe: change groupbox color (MFC) Pin
waxie23-Jan-06 23:31
waxie23-Jan-06 23:31 
GeneralRe: change groupbox color (MFC) Pin
toxcct23-Jan-06 23:35
toxcct23-Jan-06 23:35 
GeneralRe: change groupbox color (MFC) Pin
Owner drawn23-Jan-06 23:38
Owner drawn23-Jan-06 23:38 
GeneralRe: change groupbox color (MFC) Pin
toxcct23-Jan-06 23:44
toxcct23-Jan-06 23:44 
GeneralRe: change groupbox color (MFC) Pin
Owner drawn23-Jan-06 23:50
Owner drawn23-Jan-06 23: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.