Anonymous
it should be part of the linux-headers
Anonymous
May be u have used any file that is not existing
> The error literally states it > Maybe
Jasur Fozilov 🐳
/get ide
Jasur Fozilov 🐳
/get ides
Anonymous
What??
You said "maybe" while the error is literally no such file or directory.
Jasur Fozilov 🐳
Why do you use a file that doesn't exist?!
I use embarcadero c ++. I want to download another ide now. Clion is paid. What a free ide I can use
Anonymous
Code::Blocks or VS Code or Visual Studio
CodeBlocks is bad VSCode is not an ide
Hanz
I keep suggesting wrong things 🤔
Dima
code::blocks is for 00’s feeling
Anonymous
Hanz
/get whatiside
Dima
hm I think AppCode should be added too
Anonymous
Jasur Fozilov 🐳
You can use CLion EAP version for free
I couldn't find. Can you send me link for download ?
•‿•
i need a help is there is any one c - programmer
•‿•
#include <stdio.h> int main() { float a = 5, b = 2; int c, d; c = a%b; d = a / 2; // d = 5 / 2; // d = 2.5; printf("%d \n ", d); return 0; }
•‿•
what wrong in this programm
•‿•
ohh thanks dude
morningStar
/get cbook
Anonymous
How to design the game on the C++ programming
Anonymous
use Unreal Engine
What is these
Hanz
What is these
Game engine
Anonymous
Game engine
How can get unreal Engine
•‿•
#include <stdio.h> int main(){ int a,b; printf("Enter values of a and b "); scanf("%d %d ", &a,&b); printf("a=%d b=%d" , a,b ); return 0; }
MᏫᎻᎯᎷᎷᎬᎠ
.
•‿•
why
klimi
why
pming
•‿•
ahh okay
Jasur Fozilov 🐳
You can use CLion EAP version for free
Clion EAP is 30 day trial for free, so ?
Anonymous
There is no EAP version at the time yet
Jasur Fozilov 🐳
you can always pirate
can you teach ?
Anunay
No promoting piracy here :)
Jasur Fozilov 🐳
No
Why ?
Ehsan
B121065_Swoyam Siddharth Nayak
what should be the output of (a^b)^b ^ = XOR Gate
Abhishek
proof?
It is fact xor of 2 same no. will neutralize each other
B121065_Swoyam Siddharth Nayak
a will be the ans
if i have to get a unique number from an integer array then what should we do, like one idea is that we can add every number as a=a^arr[i] so if an entry is present in a pair, then as they are passed through xor operator, the pair would get neutralised, but what if an integer is present three times, the first two entries would neutralise themselves but what about the third time??
B121065_Swoyam Siddharth Nayak
ANOTHER THING, we have to do the question by BIT MANIPULATION
Anonymous
Keeahnoo: I need help making a c++ program where it asks a password, and everytime its asking a password and the password is wrong. It returns 2 numbers. Number of position that is correct , and the number of letters that were correct but in an incorrect position. If the password entered is correct, it returns correct. The given password is "icpc" If the user types "accp" its returns number 1 and 2. As there is 1 correct position, and 2 correct letters but incorrect position #include <iostream> using namespace std;    int main(){​​​​     string passC = "icpc", passA;       for(int i=50; i >= 1;i--){​​​​     cout << "Type the password ";     cin >> passA;     if(passA != passC){​​​​         cout << "wrong answer \n" << "attemps left " << i<< "\n\n";              }​​​​     else if (passA == passC){​​​​         cout << "Correct";         break;     }​​​​     }​​​​      }​​​​ This is the code I made but its lacking. And Im too dumb to complete it. And if I type cacp its returns the number 0 and 3 Make sense? Thank you for someone who will help.
B121065_Swoyam Siddharth Nayak
{1,2,3,3,3,2,1} you mean 3 is unique in the above array???
Abhishek
Do one thing write exact question and what is expected output
Abhishek
Me?
No bro I m asking form swoyam
Anonymous
No bro I m asking form swoyam
Okay okay thank you for clarifying.
B121065_Swoyam Siddharth Nayak
Do one thing write exact question and what is expected output
{1,2,2,2,3,3,4,1} on passing this it should return 4
De Artixt
Hello
Abhishek
{1,2,2,2,3,3,4,1} on passing this it should return 4
It's an easy bro you can find approach anywhere easily
Abhishek
This is returning the count of unique elements contain in this like 1,2,3,4
B121065_Swoyam Siddharth Nayak
It's an easy bro you can find approach anywhere easily
i tried, but i want the answer in BIT MANIPULATION METHOD
De Artixt
Pleas i need help
B121065_Swoyam Siddharth Nayak
This is returning the count of unique elements contain in this like 1,2,3,4
by unique i mean the numbers that are present only once
Abhishek
i tried, but i want the answer in BIT MANIPULATION METHOD
Xor operation itself comes under bit manipulation
Abhishek
by unique i mean the numbers that are present only once
Yeah unique means we have eleminate repeated no. that's it.
B121065_Swoyam Siddharth Nayak
De Artixt
Somone help me ava find or search everything 👏👏👏
Abhishek
so i have to eliminate pairs???
Yeah that's the approach
Abhishek
Somone help me ava find or search everything 👏👏👏
Instead of asking write your query here
B121065_Swoyam Siddharth Nayak
Abhishek
so i have to eliminate pairs???
Do this question using vector you'll get your answer in one line
Abhishek
Thank you bhaiya
Wlcm bro 😁👍
B121065_Swoyam Siddharth Nayak
Do this question using vector you'll get your answer in one line
bhaiya am ri8 now beginner of beginner, am not in college even, i just gave my jee, so this problem appeared in a question in my course.