mito
what's the "something"?
I think the 'something' is that his messages are deleted.
klimi
I think the 'something' is that his messages are deleted.
thanks for the input, but i will wait for theirs reply
Anonymous
Why are you do that, if you want to delete prevent first , now when he will be online it's not possible to him to see my suggestion
Note that this is the first time that I speak in French with someone that we understand each other.
Anonymous
So now as you delete it , reply him suggest him something better. perhaps my suggestion are wrong
Anonymous
Why are you do that, if you want to delete prevent first , now when he will be online it's not possible to him to see my suggestion
We don't care. The group rules specifically mention only English is allowed. If you can't read the rules, then it is not our problem.
Anonymous
So now as you delete it , reply him suggest him something better. perhaps my suggestion are wrong
We don't care. It is his/her problem and not ours. So stop cribbing about it.
Eric Czeladka 🇫🇷
Not very openmind...
mito
Not very openmind...
Just talk to them in Private message, it's not that complicated.
Eric Czeladka 🇫🇷
Ok tks
klimi
Not very openmind...
it's clearly stated in the rules that this group is international and that english is the only allowed language here
Eric Czeladka 🇫🇷
Ok. It's clear. No pb
Eric Czeladka 🇫🇷
Anyway a message has been deleted maybe it was an interesting one so... in english... Could somebody share any idea about my question ? Tks
Eric Czeladka 🇫🇷
I am not sure : I'm on codeblocks 20.03 on windows 10
klimi
I am not sure : I'm on codeblocks 20.03 on windows 10
k11m1@k11book/tmp$ gcc test.c test.c: In function ‘main’: test.c:9:4: warning: implicit declaration of function ‘gets’; did you mean ‘fgets’? [-Wimplicit-function-declaration] 9 | gets(saisie); | ^~~~ | fgets /usr/bin/ld: /tmp/cckg8ePH.o: in function `main': test.c:(.text+0x39): warning: the `gets' function is dangerous and should not be used. k11m1@k11book/tmp$ ./a.out pls input a string with 2 numbers 2 5 c = 2 you have input2 in first and 5 in second
Eric Czeladka 🇫🇷
Standards settings
Eric Czeladka 🇫🇷
What i want in fact is... How to count integers in a string ?
Eric Czeladka 🇫🇷
In this case 2 is ok but if i input Fff 3 7 3 1 Yhhh I'd like c to return 4 int in the string
klimi
What i want in fact is... How to count integers in a string ?
https://stackoverflow.com/questions/45449504/count-and-get-integers-from-a-string-using-c
klimi
In this case 2 is ok but if i input Fff 3 7 3 1 Yhhh I'd like c to return 4 int in the string
sscanf output only how many it was able to read, you have %d %d in sscanf therefore it can become 0, 1 or 2, but no more
Eric Czeladka 🇫🇷
I knew this line was the problem but why... Ok tks for suggestion @klimi and @mohamed_elbachir
Anonymous
is this reply for me?
Not for you , but someone who delete the message, anyway it's nothing, so don't worry
klimi
Ah ok .... No more than 2 so... Ok
it outputs how many matches it was able to make -> how many variables it was able to load
Jillur Rahman
is there any major difference between double and float;that can cause a major issue?
Jillur Rahman
in 'C' programming lang?
Zel
is there any major difference between double and float;that can cause a major issue?
Bus width, memory management, realmode/virtualmode vs long mode, supported instruction sets....
𝕾𝖗𝖚𝖑𝖎
I try calling a function into the main and get this error: "Expected '(' for function-style cast or type construction"
Anonymous
Please how do we create a txt file in. C🤲🤲🤲🤲
klimi
Please how do we create a txt file in. C🤲🤲🤲🤲
txt is just... textfile... so you can just write your bytes/chars to the file and you would create txt :)
𝕾𝖗𝖚𝖑𝖎
can you show the code?
cant send media
Mudasir
I'll like to get someone who will teach me C from scratch help please 🙏
klimi
cant send media
send the line where you are calling the function
𝕾𝖗𝖚𝖑𝖎
read the pinned message
it says screenshot captures are ok
𝕾𝖗𝖚𝖑𝖎
send the line where you are calling the function
cout << int area(Length,Width) << endl;
klimi
it says screenshot captures are ok
this message was not for you
klimi
cout << int area(Length,Width) << endl;
why do you have that "int" in that?
klimi
i think that you don't want that there
𝕾𝖗𝖚𝖑𝖎
i think that you don't want that there
thanks!! just learned functions today, sorry🙂
klimi
thanks!! just learned functions today, sorry🙂
you usually use "int something" when declaring some things like variables or even functions :)
abdelrahman
create a new object with static data and add the transaction to the array of transactions related to this client, client can’t create more than 5 transactions
abdelrahman
how to do this pls?
💰💵⚛️💹⚛️💵💰
Mudasir
Thanks bro
(-__-)
You should not declare a data field that can be derived from other data fields. For example, the following Person class has two data fields: birthDate and age. Since age can be derived from birthDate, age should not be declared as a data field. class Person { public: ... private: Date birthDate; int age; }
#_Sʜᴇʀᴀᴢɪᴍᴏᴠ 🇺🇿
Please 🙏
Dm
Could someone explain me why ?
Probable this issue mean that derived data fields should be declared as protected I have no others ideas
Dm
ok thanks
Or you can store data in another class and has interface to get data from this class in your person class. but it seems too weird
'''''''
what's the time complexity of to_string(n) (in terms of number of digits in the integer) in STL? Is it linear or constant (someone argued on stackoverflow that since the max size of integer is fixed, its constant)
Apk
what's the time complexity of to_string(n) (in terms of number of digits in the integer) in STL? Is it linear or constant (someone argued on stackoverflow that since the max size of integer is fixed, its constant)
I think it is not constant because integers are infinite. Only because integer data type is limited does not limits the range of actual integers. So it would be order of digits in the number.
'''''''
Hmm thanks
Gilad
Hey guys. Can I send a link for github gits code snippet in C so I can get some help ? 🙂
abdelrahman
how can i do this?
Gilad
Awesome! Ill do that.
Gilad
https://gist.github.com/giladal/5a5cd3936fa60940b81dba53b654841f
abdelrahman
sort the array of linked lists by the linked list size using the Quick Sort Algorithm, then view each array index after sorting and print the clients in the linked list
abdelrahman
how can i do this in c++
Danya🔥
how can i do this in c++
Like in any other language
abdelrahman
ok how?
Danya🔥
ok how?
With your own hands typing on the keyboard
Danya🔥
If you think that this chat is a free helpdesk where you can get a solution to your problem, you're wrong
abdelrahman
I want some tips thats it
abdelrahman
But thank you
Gilad
Anyone?🙃
Aditya☺️
Gilad
Help with what might be wrong with my code? https://gist.github.com/giladal/5a5cd3936fa60940b81dba53b654841f
Danya🔥
Lol