D
D
Dm. Stark20152015-05-01 10:49:27
Programming
Dm. Stark2015, 2015-05-01 10:49:27

What the... with VS?

I open my Visual Studio 2013, create a project like C ++, Win32 Console Application, select "Empty Project" in the project parameters and in the end I see this:
55a90c85b795469a864c665566d25bd6.jpg
So what should I do so that there is not an empty field, but a field where I can write a program? How to fix?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
F
fuzz0, 2015-05-01
@fuzz0

Obviously you need to add *.cpp / *.h files to your project.891a5afd101742d4b7b29de36c5d63be.png

L
Lexans, 2015-05-01
@Lexans

You poke on daddy Source code files, then ea file ConsoleAapplication2.cpp

A
Alexander, 2015-05-01
@NeiroNx

And what religion prevents you from choosing not "Empty project" but some kind of "Hello word"?
Obviously you need to create a "main.cpp" file:

#include <iostream>
int main ()
{
  std::cout << "Hello World!";
  return 0;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question