Roxifλsz 🇱🇹
Speak English in this group, if you want to talk in your own language please do so in private
Roxifλsz 🇱🇹
I legit can't understand you... You should learn better English
Anonymous
Anonymous
Need this sequence
Liam
Need this sequence
Could you define this sequence?
Anonymous
Could you define this sequence?
All I have is that..which I have posted
Liam
All I have is that..which I have posted
Is this an OJ? Could you please show the link to the question?
Ilya
Stupid task. This is not for programming, this is for math. Hence, offtopic.
Liam
Since the given information could not result in a known natural sequence here: https://oeis.org/search?q=3%2C9%2C30%2C101%2C358%2C1443&language=english&go=Search
Liam
Stupid task. This is not for programming, this is for math. Hence, offtopic.
The key point to the question is how to handle the number modulo 10^9 + 7, in the programming language.
Harry
lagrange polynomial
Ilya
You can write a program printing fixed numbers for N < 7 and an arbitrary number for N>=7 ...
Anonymous
how do i create database for storing group id cards and their imformation ? any help please ?
Ilya
I thought it was ONE NUMBER.... :-)
Underground
Hi guys
Underground
Underground
What does it mean?
Ilya
Why are you asking in C++ chat?
Underground
Russkie est'?
Oluwaseyi
Check the pinned msg.
I don't understand
Liam
Seems that the application requested a frame of memory, which is mapped to a file on an I/O device (disk for example), but the system failed to read that frame page from the I/O device. However, this is a little bit offtopic in this group.
Liam
I don't understand
The pinned msg.
Oluwaseyi
The pinned msg.
Please explain better
Anonymous
Please read the message if you don't understand then use english dictionary
Liam
When one mentions "pinned msg" in a Telegram chat group, one means the pinned message in that group. The pinned message could be found at the top in the chatting window. When you click it, on PC/Mac, or tap it, on your mobile phone, the Application will help you to navigate to it. And then you could read it.
Liam
Guide to the term "pinned msg".
Underground
Bot
Underground
R*
Max
English please
Liam
Please use English in the group.
Max
hey
Anonymous
I'm new to C/C++
U Don't Know
I am a new learner of html. What kind of advices can u give me? Write in p.m.
Anonymous
https://www.w3schools.com/html/default.asp
Roxifλsz 🇱🇹
I am a new learner of html. What kind of advices can u give me? Write in p.m.
Can you not read? This is a group for C and C++. Please go to @letstalkprogramming for a group for all programming languages
Anonymous
Come on. He is just asking for a help
deltanicola
ehi dude, i've developed my first game :D
deltanicola
it's something stupid in cmd tho
deltanicola
but it's a gift so it's kinda special ahah
Roxifλsz 🇱🇹
Come on. He is just asking for a help
I pointed him to a group with more people and that group is dedicated to all languages and paradigms of programming. I feel that my response is justified
h4child
Francesco
English motherfucker
Anonymous
Come on. He is just asking for a help
that's actually a better grp
Anonymous
but it's a gift so it's kinda special ahah
my first pgm was a kinda gift to my mom
deltanicola
oh cool
Anonymous
wat was yours
Anonymous
hangman?
Артём
Bor, however there is only English allowed.
Артём
Of course.
Anonymous
Happy new year
Артём
## Welcome We&#39;re very glad to welcome you to join the International C/C++ Group. You can invite others by https://t.me/programminginc ## Topics In this group, any topics related to C/C++, Assembly, Debugging, and Hacking are welcomed. For serval reasons, it&#39;s appreciated that communicating with each other here by English; including but not limited to: * English is one of the most widely used and accepted language in this world, and most programmers could read English, since programmings languages are often based on English. * Communicating through English helps others understanding your posts better. * Your questions might also help or enlight others, and thus communicating in English might help to maximize global benifits in this aspect. You may also noticed that Pornography, Spam, Abuse, and Religion or Ideological topics are strictly forbidden in this group. ## Questions Questions related to the topics are welcomed. However, this is not a place to get the answer to your homework, hence DO NOT ask others to do the homework on behalf of you yourself. Life is short. For saving time and helping you to find more potential answers to your question, asking questions in a smart way is indispensable. You might be happy to have a look of this instruction: * [English](http://www.catb.org/esr/faqs/smart-questions.html) * [Translations](http://www.catb.org/esr/faqs/smart-questions.html#translations) BTW, when you are posting long long code snippets for asking questions, please kindly taking pastebins into consideration. Some famous pastebins are listed here: * [GitHub Gist](https://gist.github.com) * [Ubuntu Paste](https://paste.ubuntu.com/) ## Sources and Knowledge Check Allen&#39;s post: https://t.me/programminginc/6504 ## Reports If any Pornography, Spam, Abuse, and Religion or Ideological topics are found, please kindly pin the admins to help us for the purification of the communication environment in the group.
Read this.
Anonymous
You should speak only in english
Vinod
Hello everyone ✋
Liam
Sorry, but in this group, using a language other than English becomes some what a interference to other group members. Please read the pinned message and using English here only.
Anonymous
https://gettouchoftech.blogspot.in/?m=1
Anonymous
Hi
Anonymous
Who's live
Anonymous
Why ** is needed
Anonymous
Which are use case of double pointer
Anonymous
Is it called double pointer or pointer of pointer?
Francesco
Pointer of pointer
Anonymous
Pointer of pointer
Can you explain me why it's needed some example or use cases , explain like I am 5
Francesco
One example i can make to you is: you have a function where you must modify the value of a pointer. You can pass the pointer of pointer. Void foo(int** p) { //Modify p } Int main() { Int* p = //an address Foo(&p); }
Andrea
Or to dynamically allocate a matrix Where p** = array of * (that are arrays them self)
Francesco
With ** p point to another memory location
Francesco
Btw this is only an example to show you **, there are potential memory leak in my code
Daniele°
You not need a malloc
Francesco
You not need a malloc
the lifetime of variable don't end with function?
Daniele°
the lifetime of variable don't end with function?
You have a reference to variabile