Anonymous
Pest Control Service
Anyone know if it is possible to create a web bot in C / C ++ ??
yes, but personally I will use python instead
Mary
Karabakh is Azerbaijan
is this about c++ ?
Xudoyberdi
Mary
Hadaward 'Solly'
you guys dont make it easy
Anonymous
is this about c++ ?
Okay, printf("Karabakh is Azerbaijan!");
Pest Control Service
I'm using telegram X which is written in C++, this allows me to say anything here right? lol
Anonymous
Hello guys
Anonymous
Hello guys
hello there
Mary
Write a program that inputs three double-precision, floating-point numbers and passes them to a function that returns the smallest number.
Mahsun
/warn
Ashish
Cash free company ke baare me koi idea h
Ashish
Kisi ko
Hamidullo 🇺🇿
Can I create android games with c++?
Anonymous
You can
Hamidullo 🇺🇿
You can
With how framework?
Anonymous
With how framework?
Unreal Engine
Hamidullo 🇺🇿
Unreal Engine
Thanks a lot
The J0hn
Can anyone suggest me a good Python group on Telegram?
Shreyansh
Can anyone help me in a problem in C?
Anonymous
Can anyone help me in a problem in C?
Just post where u r stuck..
Shreyansh
Just post where u r stuck..
Its not letting me send pic
Anonymous
Its not letting me send pic
Cuz sending pic is not allowed , use a pastebin service
Xudoyberdi
Pastebin.com
The J0hn
@en_it_chats
Thankyou, dude.
Anonymous
What are you trying to implement and whats the problem ?
Shreyansh
What are you trying to implement and whats the problem ?
The question asked me to make a function struct node that copies the other list. But now how do i run it?
Shreyansh
Write main() function to run ?
Thats ok but I'm confused that without an original list and push function is it possible to get the output? Cuz as per the instructions i cant do anything apart from what's asked
Anonymous
can we use typedef like this typedef struct cam ?
Anonymous
Hi I have problem in windows form application of c#
Igor🇺🇦
Hi I have problem in windows form application of c#
Try asking this in C# group. Not here
Anonymous
Anonymous
Anonymous
Thanks
数学の恋人
Is C's __int_least64_t same as C++'s int_fast64_t?
数学の恋人
I mean to ask in usage's manner
数学の恋人
and not their implementation
Igor🇺🇦
I mean to ask in usage's manner
On most platforms: int_least64_t ,int_fast64_t , int64_t are just int64_t. But, in general, they exactly same thing as they say in case that int64_t is not smallest and fastest number that can contain 64 bits. I'm not aware of any modern platform where they are different.
Igor🇺🇦
no don't compare int_least64_t and int_fast64_t, I was wondering about __int_least64_t and int_fast64_t
There are only int_least64_t, int_fast64_t https://www.cplusplus.com/reference/cstdint/
数学の恋人
I am trying to compare C's __int_least64_t with C++'s int_fast64_t
Igor🇺🇦
Refer to my original question
I am referring. There is a header stdint.h in C and cstdint in C++ . They define both define the same int_least64_t and int_fast64_t, __int_least64_t - is something non standard
rvp
how can i compute the lcm of N many numbers? I have an algorithm but couldn't manage to computation
shukry
Can I get a pdf that examples of programs
shukry
On different levels
shukry
From bigginer to advance
shukry
Only examples no other details I will be greatful
数学の恋人
数学の恋人
Can I get a pdf that examples of programs
Anyways have a look at https://blog.usejournal.com/500-data-structures-and-algorithms-practice-problems-35afe8a1e222
Igor🇺🇦
how can i compute the lcm of N many numbers? I have an algorithm but couldn't manage to computation
And what is the algorithm that you want to use? There are several. https://en.wikipedia.org/wiki/Least_common_multiple#Calculation
shukry
数学の恋人
how can i compute the lcm of N many numbers? I have an algorithm but couldn't manage to computation
First of all this is C/C++ group, not a group to discuss data structures, algorithms, etc. But as you've already asked it, check Euclidean algorithm (basically finding lcm using gcd) or use the middle school method (dividing by next prime factor, beginning from 2) and then multiple all factors
数学の恋人
/notes
数学の恋人
/get ot
Igor🇺🇦
Algorithms are important part of programming. What's your issue?
Igor🇺🇦
algorithms - are part of C/C++/C#/Rust or whatever language.
Türko
/C
Vitalii
Sorry, how to print this? In case if I don't know, how long my text(I write name, surname from keyboard) will be? From: Name: Birth: Marks: Surnameeee Noname 20.10.2002 2 3 3 5 Zlotaryk Noname 17.09.2003 5 3 2 5 To make this: Name: Birth: Marks: Surnameeee Noname 20.10.2002 2 3 3 5 Zlotaryk Noname 17.09.2003 5 3 2 5
Vitalii
How to determine this indentation from the left edge?
数学の恋人
How to determine this indentation from the left edge?
define width of each column to be length of longest string+1
j
I've initialized an array like char a[3][4]; And i get this values. Are those whatever was in memory or is it something else?
j
i get "UU\000" at i=0
j
is that something?
数学の恋人
i get "UU\000" at i=0
isn't it just NULL?
Roy
Have task: return shared_ptr from function by reference if object exist or return empty shared_ptr, how i can do it? Important! I can return shared_ptr by value, but it's increase counter in shared_ptr if object exist. Has method for return by reference or value but without increase counter?
Pavel
Because how you'll control that it's not expired otherwise?