Skip to main content

Posts

Showing posts from September, 2019

Gujarati Keyboard layout (terafont-varun), Computer Short cut key, Tally short cut key

Kachchh University PGDCA Sem-1 Exam Time Table Oct - 2019

Kachchh University Exam Time Table Sem - 3 October - 2019

C Language Practical

Section C: C Program: 1: Write a code to add, subtract, mulitiply and divide two numbers. #include<stdio.h> #include<conio.h> void main() {           int num1, num2;           clrscr();           printf("Enter First number : ");           scanf("%d",&num1);           printf("\nEnter Second number : ");           scanf("%d",&num2);           printf("\n%d + %d = %d", num1, num2, (num1 + num2));           printf("\n%d - %d = %d", num1, num2, (num1 - num2));           printf("\n%d * %d = %d", num1, num2, (num1 * num2));           printf("\n%d / %d = %d", num1, num2, (num1 / num2));           getch(); } Output: 2: Write a code to find reminder of two numbers. #include<stdio.h> #include<conio.h> void main() {           int num1, num2;           clrscr();           printf("Enter First number : ");