Click here to Skip to main content
15,881,669 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
i want to use visual C++ with visual studio 2015 cross platform development mobile development .i have tried man opton but not get sucess. i want to write code in visual c++ to make an alram in cross web platform


What I have tried:

i want to use visual C++ with visual studio 2015 cross platform development
Posted
Updated 28-Aug-17 2:05am
v2
Comments
Jochen Arndt 28-Aug-17 2:55am    
What is your question, where you got stuck?

1 solution

The updated "question" is still not a question.

Quote:
i want to write code in visual c++ to make an alram in cross web platform
It is uncommon to write web applications in C++ because there are very few libraries for it. You may however use any web development framework provided it has a C++ interface or you implement it yourself.

But the main problem - when it should run on different platforms - is that C/C++ applications use system specific library implementations (the CRT containing the startup code and the standard C and C++ library implementations). So you have to build such an application for different target platforms. That means, while your sources might be cross platform, the generated executable is not.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900