Invitation to Attend “Connect, Simulate and Innovate using Arduino on Cloud”, an awareness programme
If you are not an organiser or invigilator of the Subscribed college, please register using this Google form
Which type of questions will be there.Is it MCQs type?
C Tutorial for beginners to learn c programming from scratch.. This tutorial site covers all topics related to c programming and explained with example programs.C TutorialC Basic Program
I am not able to understand how to do the assignment. pls explain how to use datatypes and variables correctly
Assignment program for calculating simple interest#include <stdio.h>int main(){ float principle, time, rate, SI; printf("Enter principle amount: "); scanf("%f", &principle); printf("Enter time: "); scanf("%f", &time); printf("Enter rate: "); scanf("%f", &rate); /* Calculate simple interest */ SI = (principle * time * rate) / 100; printf("Simple Interest = %f", SI); return 0;}Haripriya,ECE departmentIRTT
#include int main() { float principle, time, rate, SI; printf("Enter principle (amount): "); scanf("%f", &principle); printf("Enter time: "); scanf("%f", &time); printf("Enter rate: "); scanf("%f", &rate); SI = (principle * time * rate) / 100; printf("Simple Interest = %f", SI); return 0; }Gokulapriya Ece department irtt
hello, there I'm learning your course c and c++ in windows environment. I had repeated the program of tokens but came across a problem when I inserted "clrscr" command. when i put clr above the initialization it showed me four errors but when i put it below all the initialization the program runs but the value of float and double const was zero. could u please help me out this what was the reason of problem?.Thanks!
Why is the following code not running properly for calculation of simple interest?#include <stdio.h>int main(){float principle=10000;float rate=>2;float time=2;float SI;SI = principle*rate*time/100;printf(SI);return 0;}
1129 visits
Outline:सि अपि च चि प्लस् प्लस् मध्ये टोकन -Data types, constants, identifiers -कीवर्ड्स् --उदाहरणार्थम्: if, break, else -Constants -Data types --उदाहरणार्थम्: int, float, char, double -Format specifiers --उदाहरणार्थम्: 0, 0, %c, %lf -Range of data types -Variables -Identifier -Errors
सि अपि च चि प्लस् प्लस् मध्ये टोकन -Data types, constants, identifiers -कीवर्ड्स् --उदाहरणार्थम्: if, break, else -Constants -Data types --उदाहरणार्थम्: int, float, char, double -Format specifiers --उदाहरणार्थम्: 0, 0, %c, %lf -Range of data types -Variables -Identifier -Errors
Show video info
Pre-requisite