Display Messages as Outputs || Question Bank || Bcis Notes

Display messages as outputs

This is the very short and easy coding that is used to display messages as outputs. “printf” is the name of one of the main C output functions, and stands for “print formatted”.

Display messages as outputs

Results

Display messages as outputs

“;”
This is the very important part of any programming language because “;” helps to stop the program limits if you don’t write “;” in your program statement the programming will be wrong.

#include<stdio.h>
#include<stdio. h> is a statement that tells the compiler to insert the contents of stdio at that particular place.
stdio. h is the header file for standard input and output.

printf
In C programming language, printf() function is used to print the “character, string, float, integer, octal and hexadecimal values” onto the output screen. We use printf() function with a %d format specifier to display the value of an integer variable.

void main()
The return type of the function “main” is void, i.e. it does not return anything to the OS. “void” means that you’re not allowed to pass any argument to the main.

{}
The symbols { }, used especially in mathematics and computer programs for showing that things written between them should be considered together.

you may also like C Programming Language

Be the first to comment

Leave a Reply

Your email address will not be published.


*