Skip to main content

Posts

Showing posts with the label c programs in interviews

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...

Sample C Program To Transpose A Matrix .

C Program To Find Transpose a 3 * 2 matrix. #include <stdio.h> #include <conio.h> #include <stdlib.h> main() { int arr[3] [2]; int i, j; clrscr(); printf(" Enter the 6 elements of matrix\ n "); for( i = 0; i < 3; i++ )    for( j = 0; j < 2; j++ )        scanf(" %d ", &arr[i] [j]);   printf(" The matrix is \n "); for( i = 0; i < 3; i++ )   { ...