About 65410 results found exceeds the maximum. Please refine your search
question
Hestia-1095 asked AhmedSaber-5754 answered

c++ Question

may i ask .why c++ executable program run on cmd ?..
c++

0 Votes

3Answers

3 Comments

c++
question
mdenizaltun-2225 asked WayneAKing-0228 answered

Convert C++ to C#

hi all, i need a help to convert below c++ code to c#. include include int top = 10; struct node { char ch; struct node *next; struct node *prev; } *stack[11]; typedef struct node node; void push(node *str) { if (top <= 0) printf("stack is full "); else { stack[top] = str; top--; } } node *pop() { node *exp; if (top >= 10) printf("stack is empty "); else exp = stack[++top]; return exp; } void convert(char exp[]) { node op1, op2; node temp; int i; for (i=0;exp[i]!
c++

0 Votes

2Answers

1 Comment

question
RichardBest-2714 asked AhmedSaber-5754 answered

C++ Compiler

can someone help me with the download link to latest and powerful compiler for standard c++. does visual studio c++ support standard c++ coding. thank you so much for your incoming answer.
c++

This question has an accepted answer. Accepted

0 Votes

3Answers

0 Comments

question
ts-8004 asked WayneAKing-0228 commented

Using RichTextBox Class in C or C++

i want to use richtextbox class in a c or c++ program. according to; https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.richtextbox?
c++

0 Votes

2Answers

0 Comments

question
BryanKelly-4107 asked JeanineZhang-MSFT answered

Tutorial for first dialog app, C++

please help me find a tutorial that walks me through the process of creating a desktop app and ends up with a dialog containing, for example, some labels, text boxes, checkboxes, and buttons. the project will eventually use opengl to draw some charts. i don’t know if it should use mfc, atl, or something else. this is for windows 10 and visual studio 2017 professional, c++ yes, i have googled and tried several msdn walkthroughs but not discovered what is needed. thank you for your time note, apologies for the tags. they are required, but will accept nothing i typed in. tried "di" for dialog and found nothing appropriate. selected something from the options and went with that. example problem: a video tutorial begins with: new -> project -> mfc -> mfc application this install of vs 2017 professional has: new -> project -> mfc/atl -> atl project mcs/atl is the only mfc option at the project level, and atl project is the only sub-option provided. have i configured something wrong wi
c++

0 Votes

2Answers

2 Comments

question
ZanetaRezkova-9896 asked SIRAPURAMRAHULRAJ-3722 commented

error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/

hello, i'm trying install library web3. unfortunatly the code ended with this error every time. error: microsoft visual c++ 14.0 or greater is required. get it with "microsoft c++ build tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/ i have python 3.7.5 and windows 10 home. the mv c++ i have already installed and the version of visual studio is 2019 and visual c++ build tools 2015. can somebody take me advice?
c++

5 Votes

3Answers

0 Comments

question
LucaBernabei-3190 asked GuidoFranzke commented

Visual C++ impossible open fnmatch.h

hi, i am using visual studio community 2019 version 16.9.4. there is an error in my visual c++ project: impossible open #include (error code e1696). do you know that issue ?
c++

This question has an accepted answer. Accepted

0 Votes

7Answers

0 Comments

question
srfpala asked JeanineZhang-MSFT commented

Using C++ 20

in vs2019, how do i assure that i am using the c++20 compiler and it’s features?
c++

1 Vote

2Answers

1 Comment

question
FyMa2618-9573 asked FyMa2618-9573 commented

Problem whit Visual Studio / C++

good day, i am new in visual studio, i make a c++ project. on my snl. file i had activated all files usw., but when i try to include a headerdata its dont work(only when its in a other folder.) anyone know what i can do?
c++

This question has an accepted answer. Accepted

0 Votes

1Answer

2 Comments

question
SidKraft-5353 asked AhmedSaber-5754 answered

Good C++ Reference Manual

looking for a good book that lists the c++ commands and arguments with a description of each, i.e.: command getline(a,b,c); used in c++ to get input data from the console or from a file. when accessing the file data, the end of a record is depicted when the eof character is sensed or the end of character, parameter 3(c) is detected. the eof character is "xxx". not sure if the above statement is true but trying to purchase a document that will provide the above information for every c++ command. anyone have ideas where i can get and the name of book and author?
c++

This question has an accepted answer. Accepted

0 Votes

4Answers

0 Comments

question
BlueFishey-1267 asked kobulloc-MSFT edited

Cant install C++ on Windows 11

i need c++ for ea app and php help !
c++

This question has an accepted answer. Accepted

0 Votes

2Answers

4 Comments

question
vikaslagerweij-6832 asked MinxinYu-MSFT commented

include iostream not working? c++

i don't understand, i've coded in c++ before but now it doesn't work. anyone got a solution?
c++

0 Votes

0Answers

6 Comments

question
JerryM-2071 asked IgorTandetnik-1300 commented

Improvement of the C++ language proposal :) :) :)

hi boys and girls, i would like to propose new key word of the c++ language: "dynamictype". it is usefull in type-cast operation(s) such us: int myvariable = 0; dynamictype mytype; mytype = typeof(float); std::cout << dynamic_cast(myvariable); here is a complex example: //* #include #include #include #include #include struct example_1 { int item1; float item2; }; struct example_2 { unsigned long item1; int item2; }; struct arritem { int key; dynamictype decl; void* link; }; int main() { arritem *item = nullptr; example_1 *e1 = nullptr; example_2 *e2 = nullptr; std::vector datalist; // datovy typ 0 je example_1 e1 = new example_1(); e1->item1 = 101; e1->item2 = (float)102.10; datalist.push_back(arritem()); datalist[0].key = 0; datalist[0].typedecl = typeof( example_1 ); datalist[0].link = e1; // datovy typ 1 je example_2 e2 = new example_2(); e2->item1 = 201; e2->item2 = (int)202; datalist.push_back(arritem());
c++

This question has an accepted answer. Accepted

0 Votes

2Answers

3 Comments

question
jinwookGIm-2105 asked jinwookGIm-2105 answered

using both c/c++ codes, float returning C++ function doesn't work in C code

i'm using both c/c++ codes in vs2019 and float returning c++ function doesn't work in c code.
c++

0 Votes

2Answers

3 Comments

Refine Your Search

Of Types