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;}
11587 visits
Outline: C और C++ में टॉकन्स -डेटा टाइप्स, कॉन्स्टंट्स,आइडेंटीफायर्स -कीवर्ड्स --उदाहरण: if, break, else -कॉन्स्टंट्स -डेटा टाइप्स --उदाहरण: int, float, char, double -फॉर्मेट स्पेसीफायर्स --उदाहरण: 0, 0, %c, %lf -डेटा टाइप्स की रेंज -वेरिएबल्स -आइडेंटीफायर -एरर्स
C और C++ में टॉकन्स -डेटा टाइप्स, कॉन्स्टंट्स,आइडेंटीफायर्स -कीवर्ड्स --उदाहरण: if, break, else -कॉन्स्टंट्स -डेटा टाइप्स --उदाहरण: int, float, char, double -फॉर्मेट स्पेसीफायर्स --उदाहरण: 0, 0, %c, %lf -डेटा टाइप्स की रेंज -वेरिएबल्स -आइडेंटीफायर -एरर्स
Show video info
Pre-requisite