Click here to Skip to main content
16,008,183 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Error executing cl.exe Pin
toxcct7-Feb-05 22:30
toxcct7-Feb-05 22:30 
GeneralRe: Error executing cl.exe Pin
ThatsAlok7-Feb-05 17:43
ThatsAlok7-Feb-05 17:43 
GeneralRe: Error executing cl.exe Pin
spacetimecont7-Feb-05 17:47
spacetimecont7-Feb-05 17:47 
GeneralRe: Error executing cl.exe Pin
Wes Aday7-Feb-05 17:58
professionalWes Aday7-Feb-05 17:58 
GeneralRe: Error executing cl.exe Pin
ThatsAlok7-Feb-05 18:35
ThatsAlok7-Feb-05 18:35 
GeneralRe: Error executing cl.exe Pin
David Crow8-Feb-05 7:58
David Crow8-Feb-05 7:58 
GeneralRe: Error executing cl.exe Pin
spacetimecont8-Feb-05 10:18
spacetimecont8-Feb-05 10:18 
GeneralRe: Error executing cl.exe Pin
David Crow8-Feb-05 10:25
David Crow8-Feb-05 10:25 
Your way:

int main()
{
using std::cout;
cout << "The size of an int is:\t\t"
<< sizeof(int) << " bytes.\n";
cout << "The size of a long int is:\t"
<< sizeof(long) << " bytes.\n";
...
}

My way:

int main()
{
    using std::cout;
 
    cout << "The size of an int is:\t\t" << sizeof(int) << " bytes.\n";
    cout << "The size of a long int is:\t" << sizeof(long) << " bytes.\n";
    ...
}



"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow


GeneralProperty Sheet in system tray Pin
Rajesh_K_Sharma7-Feb-05 17:06
Rajesh_K_Sharma7-Feb-05 17:06 
GeneralRe: Property Sheet in system tray Pin
ThatsAlok7-Feb-05 17:30
ThatsAlok7-Feb-05 17:30 
GeneralProperty Sheet Pin
Rajesh_K_Sharma7-Feb-05 16:53
Rajesh_K_Sharma7-Feb-05 16:53 
GeneralRe: Property Sheet Pin
ThatsAlok7-Feb-05 17:21
ThatsAlok7-Feb-05 17:21 
GeneralRe: Property Sheet Pin
Rajesh_K_Sharma7-Feb-05 18:39
Rajesh_K_Sharma7-Feb-05 18:39 
GeneralRe: Property Sheet Pin
ThatsAlok7-Feb-05 19:07
ThatsAlok7-Feb-05 19:07 
GeneralRe: Property Sheet Pin
Rajesh_K_Sharma7-Feb-05 19:22
Rajesh_K_Sharma7-Feb-05 19:22 
GeneralConnecting to a webpage using WinInet &amp; through a proxy server Pin
karam_chand7-Feb-05 15:53
karam_chand7-Feb-05 15:53 
Generalprinting image directly Pin
mark1827-Feb-05 14:43
mark1827-Feb-05 14:43 
GeneralRe: printing image directly Pin
basementman8-Feb-05 6:36
basementman8-Feb-05 6:36 
GeneralUsing ShellExecute() to execute program -- how to return quickly Pin
shultas7-Feb-05 14:18
shultas7-Feb-05 14:18 
GeneralRe: Using ShellExecute() to execute program -- how to return quickly Pin
Yulianto.7-Feb-05 14:51
Yulianto.7-Feb-05 14:51 
GeneralRe: Using ShellExecute() to execute program -- how to return quickly Pin
ThatsAlok7-Feb-05 18:33
ThatsAlok7-Feb-05 18:33 
GeneralOpening HTA with WebBrowser control Pin
Rheisman7-Feb-05 13:40
Rheisman7-Feb-05 13:40 
GeneralAlpha blending in TreeView Bitmaps Pin
r3dqu33n7-Feb-05 12:01
r3dqu33n7-Feb-05 12:01 
GeneralString problem in HKLM\MS\Windows\CurrentVersion\Run Pin
LukeV7-Feb-05 11:52
LukeV7-Feb-05 11:52 
GeneralRe: String problem in HKLM\MS\Windows\CurrentVersion\Run Pin
Michael Dunn7-Feb-05 11:55
sitebuilderMichael Dunn7-Feb-05 11:55 

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.