coal
Can anyone guide
Anonymous
coal
ok its not a match response
coal
Max
I am so sorry who can help me with a task?
Max
If anyone is free
Max
who can help me remove quotes from struct
Max
From that
"111111","Chief Executive or Managing Director",54480
"111211","Corporate General Manager",34365
"111212","Defence Force Senior Officer",105
take that one
111111 Chief Executive or Managing Director 54480
111211 Corporate General Manager 34365
111212 Defence Force Senior Officer 105
Dima
post it with spaces
4096
how
Dima
nvm gotta reforward it for you
Dima
how
“guys help with the problem here is the link to the stackoverflow https://ru.stackoverflow.com/feeds/question/1361017 “
4096
👌
4096
can you? @Dima
4096
this is an assignment on the programming
Ogre_Orcus(HS_SK)
Hello guys
Ogre_Orcus(HS_SK)
Please i got a question : i have a program in C and i have search box so I want to filter when I type in the search box .. data is in a database .. please how do I proceed or any code
Talula
Ogre_Orcus(HS_SK)
Talula
Well then you have to learn that first before you can pass on SQL statement that would filter the result as you type.
Ogre_Orcus(HS_SK)
Talula
Anonymous
hello there
my name is abdallah tarek , im system administrator but im not a developer actually , iam accessing websites alot and exploring information about everything that has a deal with computer any topics 😀 but can i talk to someone in the group that he/she can understand me about software applications in the web
Anonymous
of course my friend
Anonymous
does anyone understand matrix in C
Anonymous
i think it is some of console application not kind of gui application
Anonymous
ghostscript software application maybe
Anonymous
today when im at work someone gave me a punch of files that ends with file types .xps and .oxps , i have tried all softwares executable over network but all of these application that converted all xps and oxps to pdf but all are not what i needed but i have tried ghostscriptxps i said whoa what is this can i grap some of oxps filetype and finally it showed me a picture viewer only
Anonymous
and i think it means the software can convert to pdf it is a good sign but i dont know how to convert it also 😢
Egro
Hey. I’m making c++ program that’s ask user to name the file.
For example. “Name the file” then open the “name file” and write in it.
I already know how to create a file and name it. But I’m stuck with asking the user to name the file themself.
Anonymous
Anonymous
etc
Egro
Thank you
Max
How knows how to get number of rows in file and that variable put in range of array in C
klimi
Max
Over that array where i use that number ?
klimi
well i don't know what array you are talking about...
𝖳𝗁𝖾 𝖠𝗅𝗀𝗈𝗋𝗂𝗍𝗁𝗆 𝖭𝗂𝗇𝗃𝖺 ⚪♛
who is good ar editing photos
𝖳𝗁𝖾 𝖠𝗅𝗀𝗈𝗋𝗂𝗍𝗁𝗆 𝖭𝗂𝗇𝗃𝖺 ⚪♛
𝖳𝗁𝖾 𝖠𝗅𝗀𝗈𝗋𝗂𝗍𝗁𝗆 𝖭𝗂𝗇𝗃𝖺 ⚪♛
editing a photo using code ?
klimi
𝖳𝗁𝖾 𝖠𝗅𝗀𝗈𝗋𝗂𝗍𝗁𝗆 𝖭𝗂𝗇𝗃𝖺 ⚪♛
klimi
yeah
klimi
you?
Shahar
Good tutorial on C programming with WinAPI?
Max
Who knows I have a function inside is loop for printing struct
void printValues(employers values[]){
for (int i = 0; i < 1025; i++)
How i can get 1025 automaticly
klimi
klimi
or size_t
Max
int
Max
void printValues(employers values[]){
for (int i = 0; i < sizeof(values); i++)
maybe that but not enought
klimi
that won't work (in all cases)
Lathika
Anyone can help me in getting list of beginner friendly c++ graphics projects about 1000 I really want to learn through projects
Peace
can anyone explain the following in simple words ?? This automatic selection process is implemented by causing an iterator class for a specific container
to be derived (inherited) from a more general iterator class that’s appropriate to a specific
container. Thus the iterators to vectors and deques are derived from the random_access_
iterator class, while iterators to lists are derived from the bidirectional_iterator class.
\Device\NUL
> Mungkin kalau yang dipass array, bisa pake sizeof buat ngukur panjangnya
this is shit, because array arguments in C don't actually exist. sadly, compilers accept it for various bad historical reasons and since array arguments don't actually exist in C, it is the size of the pointer, not the array :p
coal
coal
arrays are pointers under the hood
\Device\NUL
what
Try
void fun(int s[x])
{
printf("%zu\n", sizeof(s));
}
coal
lol
coal
that is literally you passing a pointer to the function
coal
[] is syntactic sugar to semantically define a static array
coal
saying that "arrays arguments dont actually exist" sounds like a misunderstanding of arrays
coal
aka your friend tries to make a point but its not formulated properly or he doesn't understand it completely
\Device\NUL
coal
there i edited it
coal
the compiler throws a warning because sizeof returns the pointer size, but that doesnt mean you're not passing an array as is
coal
even if under the hood its a pointer, semantically its still an array
coal
its like saying that char* and char[] are the same thing because they both can be used as arrays, you're mixing what's maybe done behind the scenes and what the language specifies.
Anonymous
May i send you tutorial
Anonymous
https://youtube.com/playlist?list=PLu0W_9lII9agpFUAlPFe_VNSlXW5uE0YL
Anonymous
Ye lo
.
Create a fortune teller which will get birth year of user as input and tell them at which year they will get rich
Year Output
<1980 Sorry if you are not one
yet
1980-1999 a random yr between
2025-2035
2000-2014 A random yr between
2040-2055
2015-2021 A random year
between 2055-2075
>2021 There is a problem
with your birth year
You should also print how many years left to date year from now on.
Output: Welcome to the great fortune teller
Please input your birth year to learn the year that you will be a rich person:
1986
After 13 years at 2034,you will be a rich person!
Use functions
artemetra 🇺🇦
.
Tried it myself and couldnt go foward.....i just need an idea
artemetra 🇺🇦
what did you try? show the code
Melbgm
int main()
{
int elem;
int i;
int x;
int y;
printf("How many elements you want to store ?:");
scanf("%d", &elem);
int store [elem]; // what is the problem here?
for (i = 0; i < elem; i++)
Melbgm
can't i do that ?