Report Bug
Qus : Which compiler is used to translate C/C++ code into binary for AVR microcontrollers?
QusAVR माइक्रोकंट्रोलर्स के लिए C/C++ कोड को बाइनरी में ट्रांसलेट करने के लिए किस कंपाइलर का उपयोग किया जाता है?

A. G++
B. AVR- GCC
C. PYTHON
D. Both A and B


Solution
D. Both A and B



Explanation
The AVR GCC Toolchain is a collection of tools and libraries used to compile your code for the AVR microcontrollers. This collection includes a compiler, assembler, linker, and some libraries.



Report Bug