Microcontroller Embedded C Programming Lecture 22| Data types in ‘C’
Data types in 'C' Let's learn about 'C' data types and variables in this article. Data types: Data type is used for declaring the type…
Data types in 'C' Let's learn about 'C' data types and variables in this article. Data types: Data type is used for declaring the type…
Comments in 'C' Comments in C Comments are used to provide the description or documentation about the code you have written. Through commenting you can mention…
Printf exercise solution In this article, we do some exercises. Write a program to print the below text using the printf function. Remember that the output should…
Printf exercise solution Write a program that displays David says, "programming is fun!". The goal was to print a text or a string in double-quotes. Solution When…
Escape sequence in C Escape sequences in C programming language: Escape sequences in C are combinations of characters that represent special characters or actions that cannot be…
Printf exercise solution How to print text in a new line? Let's discuss how to print the text "Today is a great day" in a new line. First,…