Anonymous
Hi guys
Anonymous
hi dero
lgd
Hi guys
lgd
I have a class definition as this, class QueryRequestCollection
: public QueryRequestNode,
public shared_vector< QueryRequestNode >, can anyone tell me the meaning of this.
Jussi
It inherits from QueryRequestNode
lgd
@jussih but how about the 'public shared_vector< QueryRequestNode >' followed the comma ?
Anshika
can anybody help me in c program for hypotaneus of triangle?
Anshika
M.
M.
Yeah I just pmed you
Anshika
yeah got it thnxx😊
M.
Manas
You are human or bot? Just interesting.
Krithik Kumar
Hlo
Anonymous
hi
Manas
How to add this bot to the another group?
Anonymous
Anonymous
Anonymous
how can i let these number get into a a[n]?
Anonymous
i need to judge these number are odd or even number
Anonymous
thank you
Anonymous
programing in c
Mat
Something like a[n] = number?
Anonymous
so what should i print
Mat
Anonymous
i need to judge that output number
Mat
You can't judge an output
Mat
You can judge a number
Anonymous
oh sorry
Anonymous
my fault
Anonymous
i got a wrong question
Mat
I suggest you to search some good tutorial online to learn the basics :)
Anonymous
ok
Anonymous
thank you
Anonymous
the second question is i need to judge these number's fators are odd or even
Anonymous
ok i am so stupid
Anonymous
sorry to waste your time
Anonymous
C SOFTWARE
Anonymous
DOWNLOAD LINK
Anonymous
C SOFTWARE FOR WINDOW 10
Mat
Manas
Install MinGW and also far manager, than fine works at all platform.
Anonymous
Anonymous
how can i add friends
Anonymous
??
veera
Hlo
Anonymous
Hi clanies
Vishal
Hii marie
Anonymous
It's an bot bro
Anonymous
how can i add friends
Share the group link i.e. t.me/programminginc or click on the group name, you'll see a add member icon
Anonymous
Hello everyone,
I'm new
Manas
Can we use this bot in this group and which commands avaible for us?
Azimjon
Hello
Azimjon
Why have
Azimjon
Help me
Azimjon
@rextester_bot
👆👆👆
This online compiliyator?
🤔🤔🤔🤔
Anonymous
Anonymous
hi guys
Anonymous
sorry can someone help me about this error?
Anonymous
Anonymous
Anonymous
Anonymous
now works properly
Anonymous
thanks
Anonymous
who knows what this error means?
Alim
<< before num 2
Alim
"e miggiore di" << num2
Anonymous
thanks
Anonymous
Hy guyz, i need a big help in c++ stream, so can you help me.
Anonymous
Anonymous
Anonymous
Anonymous
hello i need help with a C++ question
Anonymous
1. Create a Car class. It should have variables named Year, Make, and Speed. It should have a get and set for each variable. It should have a default constructor and a regular constructor as well.
Anonymous
// ConsoleApplication15.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
class Cars
{
private:
int year;
string make;
int speed;
public:
void setYear(int y) { year = y; }
int getYear() { return year; }
void setMake(string m) { make = m; }
string getMake() { return make; }
void setSpeed(int s) { speed = s; }
int getSpeed() { return speed; }
};
int main()
{
return 0;
}
Anonymous
did i do it right? im not sure how to make the regular or default constructor
Alim
Cars() { } - default constructor