In c language is that right to learn 16 bit c program | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

In c language is that right to learn 16 bit c program

I watch video in YouTube for c language and youtuber discuss about the 16 bit c program is this correct can i proceed or learn to 16 bit c program and is that in year 2020 to learn 16 bit program

6th Mar 2020, 4:29 PM
Vijay Kumar
Vijay Kumar - avatar
5 Answers
+ 2
The C is the C. That it is at 8, 16, 32, 64, 128 or all the bits you like. It is no coincidence that the language includes the keyword sizeof which allows you to know the size of memory reserved for all the types at run time, therefore the limits of information storage. Without considering that you have the limits.h file which provides you with a large set of constants that define dimensions and limit values โ€‹โ€‹for the compiler you are using. What should be avoided would be the use of non-standard libraries that you may not have in other compilers. But even in this case with the help of directives to the preprocessor you can operate several branches of code in compilation so that your source works on different platforms. It is hard work, but someone has to do it ๐Ÿ˜‹
6th Mar 2020, 10:28 PM
Ciro Pellegrino
Ciro Pellegrino - avatar
+ 1
If what he means by 16-bit is DOS mode then no, you probably shouldn't be learning that. Other than that, 16-bit only signifies the architecture word size, although not one which is supported by modern operating systems (although there are still many embedded devices with 16-bit processors).
6th Mar 2020, 4:47 PM
Vlad Serbu
Vlad Serbu - avatar
+ 1
Actually Vlad Serbu gave a good reason to learn 16 bit when he said "Although there are still many embedded devices with 16-bit processors."
6th Mar 2020, 5:52 PM
BroFar
BroFar - avatar
0
Vijay Kumar c language has been around 50 years. Yes learn c, cpp, and c#. GeeksforGeeks has a very good explanation why to learn c: "Being a middle-level language, C reduces the gap between the low-level and high-level languages. It can be used for writing operating systems as well as doing application level programming. Helps to understand the fundamentals of Computer Theories."
6th Mar 2020, 4:42 PM
BroFar
BroFar - avatar
0
No you should not... Never use Turbo C/C++, they are too old and only supports 16 bit environment. Switch to gcc compile like DevC++ that follows industry standard and supported by 32/64bit machines
6th Mar 2020, 5:45 PM
Akbar Ali Quazi
Akbar Ali Quazi - avatar