Software & it’s characteristics: The set of inctruction to aquire input to process them to produce output in term of function and performance. Efficiency, Reliability, Usability, Partability, Maintainance.
Author Archives: Sanket Poul
Ch.1: Basic of C
Variable is name of memeory location which stored same data. 1. Variable (Container): Rules: a) Variable are case sensitive. b) 1st character is alphabet or ‘_’. c) No comma or black space. d) No other symbol other than ‘_’ . 2.Data Type: No. data type size of bytes 1. char or signed char 1 2.Continue reading “Ch.1: Basic of C”
code
#include<stdio.h> int main(){ printf(“\n enter the Fahrenheit of temperature”); printf(“\n enter the Celcius of temperature”); scanf(“%f%f”,&F,&C); C = 5/9*(F-32); K = C+273.15; printf(“\n Celcius of temperature in Fahrenheit is : %f”,F); printf(“\n “) }