Asks users char, int data and prints it on screen in order to show what was entered - C Language Basics

C examples for Language Basics:Hello World

Description

Asks users char, int data and prints it on screen in order to show what was entered

Demo Code

#include <stdio.h>
int main()//from   ww w.j a  va2 s . co m
{
    // Set up the variables that scanf will fill
    char firstInitial;
    char lastInitial;
    int age;
    int favorite_number;

    printf("What letter does your first name begin with?\n");
    scanf(" %c", &firstInitial);
    printf("What letter does your last name begin with?\n");
    scanf(" %c", &lastInitial);
    printf("How old are you?\n");
    scanf(" %d", &age);
    printf("What is your favorite number (integer only)?\n");
    scanf(" %d", &favorite_number);
    printf("\nYour intitials are %c.%c. and you are %d years old", firstInitial, lastInitial, age);
    printf("\nYour favorite number is %d.\n\n", favorite_number);

    return 0;
}

Related Tutorials