Even/Odd Numbers and Its Sum || Question Bank || Bcis Notes

Even/Odd Numbers and Its Sum

This is the very short and easy coding that is used to find Even/Odd Numbers and Its Sum. “printf” is the name of one of the main C output functions, and stands for “print formatted”.

Even/Odd Numbers and Its Sum

 

Results

Even/Odd Numbers and Its Sum

 

“;”
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 To Find Area of The Circle 

Be the first to comment

Leave a Reply

Your email address will not be published.


*