A Closer Look at C Data Types and Variables
C programming essentials. Learn the basis of data types in C. Know what they are, what kind of values they hold and the sizes they occupy.
C programming essentials. Learn the basis of data types in C. Know what they are, what kind of values they hold and the sizes they occupy.
Declaring a variable is fundamental, but knowing its scope when declared in different ways proves to be more important. Be cautious!
bits and bytes are the fundamentals to binary system that most computing systems are based on. A good C developer must know about them
Using the goto in C is often considered as a bad practice, but it is not always bad, let me show you one best use case with it
Learn different types of C loops types in C programming and the best practices of using them with real examples
Learn the basic use cases with C switch statement, understand its advantages over if statements and avoid common mistakes with examples
Learn the basics of if statement in C and its syntax to control to execution flow within your c program with examples
Learn the significance of a C program’s main function, procedure to process user arguments and the methods to define your own function
Learn the responsibilities of a C preprocessor that prepares your source files for compilation and the best practices using it
Learn the basic syntax and fundamentals of writing a Makefile to compile and build C software with examples
c header and source files are the basic files that make up a C applications. Learn what they are and how to properly define them
learn how to use printf and scanf standard C functions to create a basic interactions between your program and the user