Roxifλsz 🇱🇹
https://www.meetup.com/C-India/
This link seems ok, but you should ask an admin before posting such out-of-context links next time
Reza
Hello
Reza
Im reza
Reza
Any user QT creator?
Poonam
Hello everyone, Can anyone help me in functions in C?
klimi
okay sure, whats your problem
X3eRo0
i want to run a basic echo telegram bot in c++ i found the libraries but i dont know how to use them with visual studio https://github.com/slowriot/libtelegram
X3eRo0
help
klimi
you let cmake generate vsproc files
Anonymous
i want to run a basic echo telegram bot in c++ i found the libraries but i dont know how to use them with visual studio https://github.com/slowriot/libtelegram
How to use The library itself is header-only so there is nothing to build. Simply #include "libtelegram/libtelegram.h" and off you go.
Anonymous
Is it so hard to read or something?
klimi
@roxifas what do u think
Roxifλsz 🇱🇹
klimi
hm
Roxifλsz 🇱🇹
fishy af
I don't like fish
Till
No error
Artöm
Its pretty descriptive
Anonymous
Hi
MᏫᎻᎯᎷᎷᎬᎠ
Hi
Anonymous
How are you?
Anonymous
MᏫᎻᎯᎷᎷᎬᎠ
How are you?
I'm fine
I_Interface
klimi
Oh
Anonymous
typedef enum{DESCENDING,ASCENDING,ATOZ,ZTOA}SmalltoBig; typedef union{ int *intArray; char **stringArray; }StringorInt; typedef struct { StringorInt DataType; SmalltoBig Direction; }ArrayData;
Anonymous
ArrayData *MakingIntArray ={.Datatype.intArray=calloc(size, sizeof(int)),ASCENDING};
Anonymous
i am trying to declare a struct , which allocates memory for an int array as one of the members
Nomid Íkorni-Sciurus
Is it ok to use memcpy to copy data to a const void* field of a struct ?
olli
i am trying to declare a struct , which allocates memory for an int array as one of the members
that's not really a question, is it? you can do this though ArrayData data = { { (int*)calloc(num, sizeof(int)) }, ASCENDING };
Anonymous
that's not really a question, is it? you can do this though ArrayData data = { { (int*)calloc(num, sizeof(int)) }, ASCENDING };
one question. since the first member of the struct is a union, dont i have the specify which member of the union i am using ?
olli
one question. since the first member of the struct is a union, dont i have the specify which member of the union i am using ?
You can but don't have to since your using the first union member. You have to, if you want to "activate" your second member
Anonymous
XD
klimi
XD
Whatcha doing here pal
Anonymous
Whatcha doing here pal
I am a part of this C++ society
Poonam
Guys please help me in functions of c!!
Anonymous
Talula
Guys please help me in functions of c!!
void function(void) { return; }
Artöm
Hey Rose
Anonymous
Guys I joined this group because have been dreaming of creating an app, can some lead me please
Anonymous
I'll appreciate it alot
Artöm
Ask directly what you need to help with
TopG
y?
Artöm
y?
Which link it was?
Talula
y?
New users can't post a link for 24 hours.
Anonymous
y?
Read books
klimi
y?
Ahmed: learncpp.com any good for begginer?
Ilya
Ahmed: learncpp.com any good for begginer?
No, nothing is good. Read books.
Anonymous
Which link it was?
You can see the whole message if you tap (?)
Artöm
Didnt know that
Artöm
Ahmed pretty decent, not much practice though
Anonymous
Hey, how can I create a Fortnite hack,
Yom
Create?
Anonymous
Yes
Yom
You wanna hack into fortnite server?
Anonymous
You wanna hack into fortnite server?
I want to know the procedure,so that I can maybe create anti hacks
Anonymous
Rose doesn't work Meh
Mat
😆
Anonymous
That hurts
数学の恋人
Okay I'm apologizing in advance for sending camera image instead of screenshot but please bear with me
数学の恋人
数学の恋人
The lines which have + before them, did I do something wrong there?
Ilya
The lines which have + before them, did I do something wrong there?
you work with the file despite the fact it is not open. why fgetc () at the beginning? What does it do?
Ilya
Get the characters or a line at a time
fgetc reads ONE character only, not a string fget S is what you need
数学の恋人
数学の恋人
Just one single digit number
Ilya
Get the characters or a line at a time
this while logic is also wrong, a string cannot be EOF