Print the user given integer :

#include <stdio.h>
int main()
{
int number;
printf("Enter an integer of your own choice: ");
scanf("%d", &number);
printf("You entered: %d", number);
return 0;
}

Output:

Enter an integer of your own choice:190
You entered:190


For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/

Post a Comment

2 Comments