Define Turbo C Interface.
The interface of Turbo C is very simple. When IDE screen appears, the menu bar is activated. It contains various menus …
February 29, 2020The interface of Turbo C is very simple. When IDE screen appears, the menu bar is activated. It contains various menus …
Naren February 29, 2020Many have a will to download youtube videos. But they may not have ideas on how to download videos. They may either sur…
Naren February 28, 2020Temporary File is created in computer if you have created any file in the computer or running some process/tasks. Temp…
Naren February 28, 2020Here, two numbers are requested from the user and placed in 'a' and 'b' variable using scanf. The v…
Kumar.Naren February 16, 2020Explanation Here, user input degree in Fahrenheit and we have used formula of degree Celsius to calculate and the …
Kumar.Naren February 15, 2020Explanation This is the program that user input time in minutes and the program convert it to hours and minutes. H…
Kumar.Naren February 15, 2020Explanation Here, length and breadth of rectangle are inputted by user and placed in l and b using scanf. Using t…
Kumar.Naren February 12, 2020Explanation : Here by will take the birth year, cy will put current year in it. The mathematical logic to find th…
Kumar.Naren February 12, 2020Explanation Here after getting principal, time and rate from user using scanf, we have calculated simple interes…
Kumar.Naren February 12, 2020Here, we practice main function as a returning value, so we kept int main for returning some value. This program wi…
Kumar.Naren February 12, 2020#include<stdio.h> #include<conio.h> void main() { clrscr(); int p=1000; int t=2; int r=3; float si…
Kumar.Naren February 03, 2020#include<stdio.h> #include<conio.h> void main() { clrscr(); int l=20, b=30; float a,p; a=l*b; p=2*…
Kumar.Naren February 01, 2020