🎶
Please tell me the program 🙏🙏
CaviarX
Is there anyway to send code in telegram?
CaviarX
using markdown or?
CaviarX
ok I got it
CaviarX
eh...
Anonymous
I don't the command name/.............
toomaj
i am a programing student and new in c++ world . i work alittle but can you give me some learning video about c++ . i have passed basic contents
CaviarX
Well,does anyone has books about data structure and alogrithm?
CaviarX
I'm a OIer so
Anonymous
https://books.goalkicker.com/AlgorithmsBook/
CaviarX
Well this emoji means pray in Chinese :(
Anonymous
CaviarX
well when I'm typing "Thanks" this emoji comes up
CaviarX
So I'm saying thanks XD
Anonymous
and when I type well this emoji comes up
Anonymous
and typing games in 2021?
CaviarX
I've just registered the account yesterday
CaviarX
cuz you know
Anonymous
What is differ in Visual c++ and mingw64 c++?
CaviarX
visual c++ is made by Microsoft
Anonymous
the main difference????
CaviarX
mingw is a copy of gcc made by gnu
CaviarX
in windows
toomaj
thanks . you are the best .
but i have lots of E-books and right now need some movie to download .
do you have any idea about video learnings ?
Anonymous
why we can't compile Visual C++ code in Mingw64/32 C++??
CaviarX
well visual c++'s standard is different from the official standard
CaviarX
it is a standalone standard
CaviarX
void main
CaviarX
and scanf_s
Anonymous
CaviarX
are all visualc++'s products
CaviarX
so I suggested using mingw
Anonymous
yup!
Anonymous
I like to code in msys2 in winwdows
CaviarX
me too
Anonymous
Noice
CaviarX
but I need to change the source😢
Anonymous
pacman and pacboy?
CaviarX
nope
CaviarX
the pacman source
Anonymous
are we able to convert Vc++ code to g++/gcc?
CaviarX
well I did not found any slultion now
Anonymous
I need it
Anonymous
I want to compile Aseprite in G++ as my collage project
Anonymous
any one have idea to compile it in mingw64/32?
CaviarX
We call telegram "paper plane" in China (
Anonymous
noice
CaviarX
CaviarX
and fix the complie error
Anonymous
the documentation says we don't support mingw64
CaviarX
Oh that's a sad story :(
CaviarX
Anonymous
But I will try my best to do it
Abhishek
https://joshbersin.com/2022/01/welcome-to-2022-too-many-jobs-not-enough-people/
This is probably the best yr to grab the job.
Anonymous
Write c program that print prime number between 1-10
Anonymous
Help please
Anonymous
Write c program that printer natural number from 1-4
Anonymous
Sorry I mean print
Talula
Prince Fine
CaviarX
maybe he means print out
CaviarX
not calcuating prime numbers
CaviarX
wait a sec
CaviarX
cpp
#include <bits/stdc++.h>
using namespace std;
bool is_prime(int n) {
for(int i=2;i*i<=n;i++) {
if(n%i==0) {
return false;
}
}
return true;
}
int main() {
for(int i=2;i<=10;i++) {
if(is_prime(i) == true){
cout << i << ' ';
}
}
//Don't forget about it
return 0;
}
CaviarX
a͎l͎e͎x͎ w͎ The answer
Himanshu
CaviarX
There should be no cap in the first letter...
Himanshu
CaviarX
eh
CaviarX
from 2 to sqrt(i)
CaviarX
but it will lost some data during the hidden convert
CaviarX
so i*i
CaviarX
This way, precision is not lost
CaviarX
what is "|"?
Prince Fine
CaviarX
I will cosider it as a bit operations
Himanshu