Skip to main content

Posts

Showing posts with the label faq c programs

Sample C Program To Print A Message.

1) Sample C Program To Print A Message. # include <stdio.h> # include <conio.h> main() { clrscr(); printf("HELLO WELCOME TO WWW.INTERVIEW-MADE-EASY.COM"); printf("Answers To All Important Interview Questions"); getch(); } 2) Sample C Program To Read Two Numbers And Print The Sum Of Given Two Numbers. # include <stdio.h> # include <conio.h> main() { int a,b, sum; clrscr (); printf ("ENTER VALUE FOR A;"); scanf ("%d",&a); printf("ENTER VALUE FOR B;"); scanf("%d",&b); sum = a + b; printf("Sum Of Given Two Numbers are %d", sum); getch(); } 3) Sample C Program To Accept Student Roll No, Marks in 3 Subjects and Calculate Total, Average and Print it. # include <stdio.h> # include <conio.h> main() { int r, b, c, d, tot, avg; clrscr(); printf ("ENTER STUDENT RNO;"); scanf ("%d",&r); printf("ENTER FIRST SU...