Click here to Skip to main content
15,888,984 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
Questioncontext menu Pin
Learner200623-Jan-06 21:53
Learner200623-Jan-06 21:53 
AnswerRe: context menu Pin
Owner drawn23-Jan-06 22:02
Owner drawn23-Jan-06 22:02 
Questionwinpcap undeclared Pin
leenmie23-Jan-06 21:30
leenmie23-Jan-06 21:30 
QuestionBinary to Text File Pin
PremalathaP23-Jan-06 21:21
PremalathaP23-Jan-06 21:21 
AnswerRe: Binary to Text File Pin
toxcct23-Jan-06 21:25
toxcct23-Jan-06 21:25 
GeneralRe: Binary to Text File Pin
PremalathaP23-Jan-06 21:30
PremalathaP23-Jan-06 21:30 
GeneralRe: Binary to Text File Pin
Cedric Moonen23-Jan-06 21:33
Cedric Moonen23-Jan-06 21:33 
GeneralRe: Binary to Text File Pin
PremalathaP23-Jan-06 21:37
PremalathaP23-Jan-06 21:37 

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.