C Program To Take Input From Users


♣ Try it Out ::
#include<stdio.h>
#include<conio.h>

int main()
{
    int num;

    printf("Enter an Integer: ");
    scanf("%d", &num);

    printf("You have entered: %d", num);

    getch();
    return(0);
}

♣ Output ::
Enter an Integer: 569474
You have entered: 569474

♣ Downloads ::

Comments

Popular posts from this blog

C++ :: Topological Sort Algorithm (using DFS)

How to Hack Facebook Account

C++ :: Strongly Connected Components Algorithm (SCC)