Home » Programming Languages » C Programs » Formatted IO in C

Formatted IO in C

#include <stdio.h>

int main(void) {
	int age = 23;
	int take_from_user;

	printf("Predefied age = %d \n", age);

	printf("User, whats your Age ?\n");
	scanf("%d", &take_from_user);

	printf("Age entered by user : %d \n", take_from_user);

	return 0;
}

Subscribe our Rurban Life YouTube Channel.. "Rural Life, Urban LifeStyle"

Leave a Comment