Introduction To C Programming

 Introduction to C: Introduction to C Why C Programming? Fundamentals of programming. Good Performance. You will be able to write efficient programs. You will find it much easier to learn other programming languages. Job Interviews. “HELLO WORLD PROGRAM.” #include<stdio.h> int main(){ //start printf(“Hello World”); return 0; }  OUTPUT: Hello World moyasite Data Types in C … Read more

Basic questions in python

Basic Questions in Python. #Basic questions in python 1) Write a program to take the number of kilometers as input and convert into meters and print the      number of meters. SOLUTION: #taking kilometers as input of float data type given_kilometers = float(input()) #converting kilometers to meters meters = given_kilometers*1000 #printing the meters as … Read more