output

E

eng.sharif

hi group

i am try simple example
is :

// t4.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
Std::cout<<"kdeke";
return 0;
}


i show output in debug box this :

't4.exe': Loaded 'C:\Documents and Settings\sharif.SYNRYU\My Documents
\Visual Studio 2005\Projects\t4\debug\t4.exe', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols
loaded.
't4.exe': Loaded 'C:\WINDOWS\WinSxS
\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-
ww_f75eb16c\msvcr80d.dll', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded.
The program '[752] t4.exe: Native' has exited with code 0 (0x0).


what is this plz?


thx
 
L

Larry Smith

hi group

i am try simple example
is :

// t4.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
Std::cout<<"kdeke";
return 0;
}


i show output in debug box this :

't4.exe': Loaded 'C:\Documents and Settings\sharif.SYNRYU\My Documents
\Visual Studio 2005\Projects\t4\debug\t4.exe', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols
loaded.
't4.exe': Loaded 'C:\WINDOWS\WinSxS
\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-
ww_f75eb16c\msvcr80d.dll', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded.
The program '[752] t4.exe: Native' has exited with code 0 (0x0).


what is this plz?


thx

Hmm, your code is not standard C++.
It should look something like this:

#include <iostream>

int main(int argv, char *argv[])
{
std::cout << "kdeke";
return 0;
}

Now if your code is Windows specific, or
specific to some vendor's IDE (Borland?),
then you need to ask in a newsgroup
dedicated to Windows or that IDE.
 
M

Mike Wahler

hi group

i am try simple example
is :

// t4.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
Std::cout<<"kdeke";
return 0;
}


i show output in debug box this :

't4.exe': Loaded 'C:\Documents and Settings\sharif.SYNRYU\My Documents
\Visual Studio 2005\Projects\t4\debug\t4.exe', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols
loaded.
't4.exe': Loaded 'C:\WINDOWS\WinSxS
\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-
ww_f75eb16c\msvcr80d.dll', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded.
The program '[752] t4.exe: Native' has exited with code 0 (0x0).


what is this plz?

1. Your code above is not standard C++, so we cannot comment
upon its 'correctness', or behavior.

2. The behavior of a debugger is also outside the scope of
comp.lang.c++. Try asking in a newsgroup where Visual
Studio is topical (you can find names of these groups
at www.msdn.microsoft.com).

-Mike
 
J

Jim Langston

hi group

i am try simple example
is :

// t4.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
Std::cout<<"kdeke";

std::cout << "kdeke";
It's std::, not Std::
C and C++ are case SenSiTive
return 0;
}


i show output in debug box this :

't4.exe': Loaded 'C:\Documents and Settings\sharif.SYNRYU\My Documents
\Visual Studio 2005\Projects\t4\debug\t4.exe', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols
loaded.
't4.exe': Loaded 'C:\WINDOWS\WinSxS
\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-
ww_f75eb16c\msvcr80d.dll', Symbols loaded.
't4.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded.
The program '[752] t4.exe: Native' has exited with code 0 (0x0).


what is this plz?


thx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,072
Latest member
trafficcone

Latest Threads

Top