Click here to Skip to main content
15,867,832 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: basic MFC app Pin
Calin Negru8-Apr-20 21:42
Calin Negru8-Apr-20 21:42 
GeneralRe: basic MFC app Pin
Victor Nijegorodov8-Apr-20 22:02
Victor Nijegorodov8-Apr-20 22:02 
GeneralRe: basic MFC app Pin
Calin Negru8-Apr-20 23:00
Calin Negru8-Apr-20 23:00 
GeneralRe: basic MFC app Pin
Victor Nijegorodov8-Apr-20 23:28
Victor Nijegorodov8-Apr-20 23:28 
GeneralRe: basic MFC app Pin
Calin Negru8-Apr-20 23:38
Calin Negru8-Apr-20 23:38 
GeneralRe: basic MFC app Pin
Victor Nijegorodov9-Apr-20 0:06
Victor Nijegorodov9-Apr-20 0:06 
GeneralRe: basic MFC app Pin
Calin Negru9-Apr-20 0:28
Calin Negru9-Apr-20 0:28 
Questionplease help me find the error guys, they said expected unqualified-id before '{' token at line 11, col 19.. Pin
Salsabilatikah Yunus5-Apr-20 9:08
Salsabilatikah Yunus5-Apr-20 9:08 
#include <iostream>
#include <conio.h>
using namespace std;

float addition (float &a, float &b){
float sum = a + b;
b+=b;
return sum;}

 float int{
 float x, y, c, d;{
 cout<<"Masukan nilai x : ";
 cin>>x;
 cout<<"Masukan nilai y : ";
 cin>>y;
c = 6;
d = 4;
	cout << "Nilai x sebelum memanggil fungsi addition = " << c << endl;
	cout << "Nilai y sebelum memanggil fungsi addition = " << d << endl;
	cout << "------------------------------------------- " <<endl;
 cout<<addition(c,d);
="" cout<<="" "nilai="" setelah="" memanggil="" fungsi="" addition"="" <<endl;
="" cout<<"nilai="" penjumlahannya="" adalah="" :"="" <<endl;

getch();}<pre="">

AnswerRe: please help me find the error guys, they said expected unqualified-id before '{' token at line 11, col 19.. Pin
Victor Nijegorodov5-Apr-20 9:15
Victor Nijegorodov5-Apr-20 9:15 
AnswerRe: please help me find the error guys, they said expected unqualified-id before '{' token at line 11, col 19.. Pin
k50545-Apr-20 9:27
mvek50545-Apr-20 9:27 
QuestionRe: please help me find the error guys, they said expected unqualified-id before '{' token at line 11, col 19.. Pin
David Crow6-Apr-20 4:03
David Crow6-Apr-20 4:03 
Question[SOLVED]Problems when trying to abstract D3D11 types in a class with C++ Pin
txesmi4-Apr-20 0:07
txesmi4-Apr-20 0:07 
AnswerRe: Problems when trying to abstract D3D11 types in a class with C++ Pin
Graham Breach4-Apr-20 1:47
Graham Breach4-Apr-20 1:47 
GeneralRe: Problems when trying to abstract D3D11 types in a class with C++ Pin
txesmi4-Apr-20 3:11
txesmi4-Apr-20 3:11 
GeneralRe: Problems when trying to abstract D3D11 types in a class with C++ Pin
Graham Breach4-Apr-20 4:16
Graham Breach4-Apr-20 4:16 
GeneralRe: Problems when trying to abstract D3D11 types in a class with C++ Pin
txesmi4-Apr-20 4:54
txesmi4-Apr-20 4:54 
QuestionFacial Recognition in C++, from scratch Pin
Ana Gheorghiță3-Apr-20 0:58
Ana Gheorghiță3-Apr-20 0:58 
AnswerRe: Facial Recognition in C++, from scratch Pin
Richard MacCutchan3-Apr-20 1:59
mveRichard MacCutchan3-Apr-20 1:59 
AnswerRe: Facial Recognition in C++, from scratch Pin
_Flaviu5-Apr-20 0:42
_Flaviu5-Apr-20 0:42 
Questioninverse sinus, floats Pin
Calin Negru2-Apr-20 21:25
Calin Negru2-Apr-20 21:25 
AnswerRe: inverse sinus, floats Pin
Richard MacCutchan2-Apr-20 21:35
mveRichard MacCutchan2-Apr-20 21:35 
GeneralRe: inverse sinus, floats Pin
Calin Negru2-Apr-20 21:53
Calin Negru2-Apr-20 21:53 
AnswerRe: inverse sinus, floats Pin
CPallini2-Apr-20 21:57
mveCPallini2-Apr-20 21:57 
GeneralRe: inverse sinus, floats Pin
Calin Negru2-Apr-20 23:01
Calin Negru2-Apr-20 23:01 
GeneralRe: inverse sinus, floats Pin
CPallini2-Apr-20 23:18
mveCPallini2-Apr-20 23:18 

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.