Table of Contents
problem – How to write a C program to print an integer?
In this tutorial, we discuss the simple concept of C program to print an integer
In this article, we are going to learn how to write a C program to print an integer
The following shows two different ways to How to write a C program to print an integer and there is an example given to each
The first Example is done by declared and initialized the variable
The second Example is done through the user entered the value of the variables
Program 1
//C program to print an integer #include <stdio.h> #include <stdlib.h> int main() { int num;//variable declaration num=67; //initialization printf("You declared: %d\n",num); getch(); return 0; }
When the above code is executed it produces the following output
You declared: 67;
In this program,
Program 2
#include <stdio.h> #include <stdlib.h> int main() { int num;//variable declaration printf("Enter the integer to display: "); scanf("%d",&num); printf("You entered: %d \n",num); getch(); return 0; }
When the above code is executed it produces the following output
Enter the integer to display: 125 You ebtered: 125
Method
Similar post
C++ program to print an integer
Java program to print an integer
Python program to print an integer
Suggested post
Hello world program in C language
Data type in C language
Subtract two numbers using method overriding Program 1
PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…
Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…
Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…
Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…
How to write a program to convert Fahrenheit into Celsius In this article, we will…
This website uses cookies.