Click here to Skip to main content
15,890,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: descriptin of any vc++(MFC) project Pin
Christian Graus1-Oct-07 0:56
protectorChristian Graus1-Oct-07 0:56 
GeneralRe: descriptin of any vc++(MFC) project Pin
p_1-Oct-07 1:09
p_1-Oct-07 1:09 
GeneralRe: descriptin of any vc++(MFC) project Pin
Christian Graus1-Oct-07 1:33
protectorChristian Graus1-Oct-07 1:33 
GeneralRe: descriptin of any vc++(MFC) project Pin
p_1-Oct-07 1:47
p_1-Oct-07 1:47 
GeneralRe: descriptin of any vc++(MFC) project Pin
toxcct1-Oct-07 1:51
toxcct1-Oct-07 1:51 
GeneralRe: descriptin of any vc++(MFC) project Pin
chandu0041-Oct-07 2:03
chandu0041-Oct-07 2:03 
GeneralRe: descriptin of any vc++(MFC) project Pin
El Corazon1-Oct-07 6:11
El Corazon1-Oct-07 6:11 
GeneralRe: descriptin of any vc++(MFC) project [modified] Pin
El Corazon1-Oct-07 6:04
El Corazon1-Oct-07 6:04 
p_ wrote:
but task is in such a way that i can include this project in my resume


Here you go. YOu can now put on your resume that you know how to write "hello world" in many languages including VC++. Don't forget to emphasize LOLCODE, very handy for quick reports for your boss.

// language C
#include < stdio.h >
int main()
{
printf("Hello world!\n");
}

// Hello World in C++ (pre-ISO)

#include < iostream.h >

main()
{
cout << "Hello World!" << endl;
return 0;
}

// Hello World in C++/CLI for .NET

using namespace System;

void main()
{
Console::WriteLine("Hello World");
}

// Hello World in ISO C++

#include < iostream >
#include < ostream >

int main()
{
std::cout << "Hello World!" << std::endl;
}

// Hello World in D

import std.stdio;

void main()
{
writefln("Hello World!");
}

* Hello world in Cobol
*****************************
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
DATA DIVISION.
PROCEDURE DIVISION.
MAIN SECTION.
DISPLAY "Hello World!"
STOP RUN.
****************************

-- Hello World in Ada

with Text_IO;
procedure Hello_World is

begin
Text_IO.Put_Line("Hello World!");
end Hello_World;

{Hello World in Pascal}

program HelloWorld(output);
begin
WriteLn('Hello World!');
end.

10 REM Hello World in BASIC
20 PRINT "Hello World!"

' Hello World in Forth
: HELLO
." Hello World!" CR
;


! Hello World in Fortran 90 and 95

PROGRAM HelloWorld
WRITE(*,*) "Hello World!"
END PROGRAM

;;; Hello World in Common Lisp

(defun helloworld ()
(print "Hello World!")
)

; Hello World in Logo

DRUCKEZEILE [Hello World!]

; Hello World in LOGO, graphical output.

go 20 , left 180,
go 40 , left 180,
go 20 , right 90,
go 20 , left 90 ,
go 20 , left 180,
go 40 , left 90 ,
go 20 , left 90 ,
go 20 , right 90 ,
go 20 , right 90 ,
go 10 , right 90 ,
go 20 , left 90 ,
go 10 , left 90 ,
go 30 , left 90 ,
go 40 , left 180,
go 40 , left 90 ,
go 20 , left 90 ,
go 40 , left 180,
go 40 , left 90 ,
go 40 , left 90 ,
go 20 , left 90 ,
go 20 , left 90 ,
go 20 , left 90 ,
go 60 , left 90 ,
go 40 , left 180,
go 40 , left 90 ,
go 20 , left 90 ,
go 20 , left 180,
go 20 , left 90 ,
go 20 , left 90 ,
go 40 , left 180,
go 40 , left 90 ,
go 40 , left 90 ,
go 20 , left 90 ,
go 20 , left 90 ,
go 20 , left 90 ,
go 40 , left 90 ,
go 20 , right 90,
go 20 , right 90,
go 5 , left 90 ,
go 5 , left 90 ,
go 25 , left 180,
go 40 , left 90 ,
go 40 , left 90 ,
go 20 , left 90 ,
go 20 , left 90 ,
go 20 , left 90 ,
go 20 , left 90 ,
go 40 , left 180,
go 40 ,

BTW Hello World in LOLCODE
HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
KTHXBYE





-- modified at 14:09 Monday 1st October, 2007

_________________________
Asu no koto o ieba, tenjo de nezumi ga warau.
Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

GeneralRe: descriptin of any vc++(MFC) project Pin
Jeremy Falcon1-Oct-07 6:17
professionalJeremy Falcon1-Oct-07 6:17 
AnswerRe: descriptin of any vc++(MFC) project Pin
David Crow1-Oct-07 3:23
David Crow1-Oct-07 3:23 
QuestionHow to use VectorFromBstr ? Pin
shir_k30-Sep-07 23:51
shir_k30-Sep-07 23:51 
Questionactivex in browser Pin
saisp30-Sep-07 23:36
saisp30-Sep-07 23:36 
AnswerRe: activex in browser Pin
Suneet.031-Oct-07 1:39
Suneet.031-Oct-07 1:39 
Questionchanging cursor in worker thread Pin
revanth198530-Sep-07 23:33
revanth198530-Sep-07 23:33 
AnswerRe: changing cursor in worker thread Pin
Programm3r1-Oct-07 0:00
Programm3r1-Oct-07 0:00 
AnswerRe: changing cursor in worker thread Pin
David Crow1-Oct-07 3:29
David Crow1-Oct-07 3:29 
QuestionFile security on NT Pin
Waldermort30-Sep-07 21:15
Waldermort30-Sep-07 21:15 
QuestionA string combination question Pin
nethp102030-Sep-07 21:14
nethp102030-Sep-07 21:14 
AnswerRe: A string combination question Pin
chandu00430-Sep-07 21:22
chandu00430-Sep-07 21:22 
GeneralRe: A string combination question Pin
nethp102030-Sep-07 21:45
nethp102030-Sep-07 21:45 
AnswerRe: A string combination question Pin
Nelek30-Sep-07 21:34
protectorNelek30-Sep-07 21:34 
GeneralRe: A string combination question Pin
nethp102030-Sep-07 21:46
nethp102030-Sep-07 21:46 
AnswerRe: A string combination question Pin
Stephen Hewitt30-Sep-07 22:09
Stephen Hewitt30-Sep-07 22:09 
GeneralRe: A string combination question Pin
nethp102030-Sep-07 22:14
nethp102030-Sep-07 22:14 
GeneralRe: A string combination question Pin
Stephen Hewitt30-Sep-07 22:16
Stephen Hewitt30-Sep-07 22:16 

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.