BASIC INPUT OUTPUT
14 programming challenges to help you master the fundamentals of C LANGUAGE.
1
Write a program to print the message: Today I made my first C Program.
2
Write a program to read a character from the keyboard and display it on the screen.
3
Write a program to read only 4 characters from the keyboard and display it on the screen in a separate line.
4
Write a program to print your name at center of the first line?
5
Write a program to store single quote and print that variable to show single quote on output screen.
6
Write a program for printing your name on output screen but your name should blink 5 times
7
Write a program to print your name at center of the first line ?
8
Write the program to display this output ? #include<stdio.h> #include<conio.h> #include<dos.h> void main () { clrscr(); printf(“hello,welcome to c”); delay(5000); }
9
Write a program to print your name at the center of the page ?
10
Write a program to store single quote and print that variable to show single quote on output screen ?
11
Write a program for printing your name on output screen but your name should blink 5 time ?
12
Enter password display like ****** ?
13
Enter two character from user and print ASCII value ?
14