m
In the definitions file
The compiler gets errors from the juce framework source files
Brian
Hi rose
'''''''
Hi rose
Not a valid command
Anonymous
any one c programming summarized book pls help me
Adirn
Hello guys I got a question, I'm trying to build pointer that points to array of pointers (that each one of it is a chart array)
Adirn
the commands I'm using are:
Adirn
char** array_words = (char**)malloc(counter*sizeof(char*));
Adirn
counter lets say its 4
Adirn
I'm setting the size of the words with malloc array_words[counter]= (char*)malloc(wordSize*sizeof(char));
Adirn
and then when I try to put the chars letter by letter inside, it only working for the first word
Adirn
array_words[counter][j] = str[i];
Adirn
this is the command, someone see any issue? why it doesnt setting the other words?
Adirn
counter is getting bigger and also j with a for loopp
Hermann
what is the most efficient way to join two deque?
Anonymous
Is this a sarcasm?)
i like ranges. smart pointers eliminated use-after-free, ranges eliminate array out-of-bounds (though you need ranges-v3 for the full experience).
Anonymous
thanks for answering, I'll search for that
man stands for manual. type the command on your terminal to bring up the unix manual page for the function.
Anonymous
i like ranges. smart pointers eliminated use-after-free, ranges eliminate array out-of-bounds (though you need ranges-v3 for the full experience).
oh and UB from incrementing an iterator beyond end(). example for (auto iter = vec.begin(); i < vec.end(); iter += 3) { /* body */ } has UB in the last iteration. compared to ranges with no UB - for (auto &n : vec | views::stride(3)) { /* body */ }
Ni
man stands for manual. type the command on your terminal to bring up the unix manual page for the function.
I typed man strncpy in terminal, and it shows No manual entry for strncpy
Ni
archlinux
Anonymous
archlinux
https://wiki.archlinux.org/title/installation_guide#Install_essential_packages
Anonymous
> The base package does not include all tools from the live installation, so installing other packages may be necessary for a fully functional base system. In particular, consider installing: > packages for accessing documentation in man and info pages: man-db, man-pages and texinfo.
Ni
It worked, thanks dude!!
Anonymous
np
Idkwhoiam
hi guys
Idkwhoiam
how i can take things from a binary file
Idkwhoiam
for example i have to read the third line
p
hi.Does anyone know if osd_cat has Chinese?
p
I haven't found the osd_cat font format
Anonymous
for example i have to read the third line
binary files typically don't contain a "line". you need to know its structure.
Idkwhoiam
ok get it
Hamza
Anyone explain me about this- pointer
Pavel
Anyone explain me about this- pointer
https://www.google.com/amp/s/www.geeksforgeeks.org/this-pointer-in-c/amp/
Butterfly Around Wàist
Hello everyone
Shady
/get cbook
Butterfly Around Wàist
How to open c compiler in cmd prompt in pc...
Butterfly Around Wàist
I have no c language compiler
Cris
I have no c language compiler
probably you can use a c primer then
Hanz
I have no c language compiler
you dont c c compiler?
Prince Of Persia
VC++ is necessary
Prince Of Persia
you dont c c compiler?
I know you are arab But this sentence is meaningless
H.P.
1 23 345 4567 Can anyone send a code of this pattern in CPP using while loop
Suka
I have no c language compiler
download and install tcc
Suka
1 23 345 4567 Can anyone send a code of this pattern in CPP using while loop
you can save those number in array of string and use while loop to cout it hehe
It's
System programming by jhon Donovan
It's
Can i get it
Anonymous
Can i get it
You can buy it
It's
Pdf format
Anonymous
Pdf format
https://www.amazon.com/Systems-Programming-McGraw-Hill-computer-science/dp/0070176035/ref=sr_1_1?dchild=1&keywords=system+programming+by+john+donovan&qid=1621260093&sr=8-1
It's
Is free pdf available
Yasas
/getnot
Yasas
/getnote
Prince Of Persia
/getnot
/notes
Prince Of Persia
/get best
Yasas
/notes rose_as_my_girlfriend
Yasas
/get rose_as_my_girlfriend
Yasas
what
Yasas
/rules
Prince Of Persia
The rules for C/C++ Programming are: on
Prince Of Persia
🤨
Anonymous
What software can be use to package and deploy a C++ or C program written in CodeBlocks?
Yasas
/get cpp-vscode
Anonymous
lol
Anonymous
Good afternoon
Amy
It's morning now.
Nomid Íkorni-Sciurus
Hello guys. I have an issue: the cross-compiler I need is very old and does not support some flags that were introduced in recent versions. Is there a way I could produce IR so that: - First compiler produces IR - Second compiler reads IR and produces the correct binary I need to target arm7thumb (TDMI) elf format but LLVM doesn't seem to support it.
Anonymous
Is this approved post ?
Anonymous
Is free pdf available
/warn only warn
Anonymous
/ban ad
Nomid Íkorni-Sciurus
pretty sure gcc-arm-none-eabi has support for it.
and does it support an intermediate format?
olli
and does it support an intermediate format?
you can print the rtl, I doubt it's useful for you tho
Nomid Íkorni-Sciurus
you can print the rtl, I doubt it's useful for you tho
I'm trying to get my way on LLVM currently.