Microcontroller Embedded C Programming Lecture 21| Commenting in ‘C’
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…
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,…
Printf and Hello World First, in this article, let's write a simple 'C' program. Let's write a 'C' code which simply displays the text Hello world…