Using if statement#include<stdio.h>int main (){int a,b;printf("enter the value of a,b");scand("%d%d",&a,&b);if(a>b){printf("a is greater than b\n");}if(a<b){printf("a is less than b\n");}return 0;} The output is as followsa=45b=56a is less than b
How else is working even if i terminate it by semicolon?#include <stdio.h>int main(){ int a,b,c; printf("Enter the value of a,b and c \\n"); scanf("%d%d%d",&a,&b,&c); if(a>b && a>c) { printf("a is greater than b and c \\n"); } else if(b>a && b>c) { printf("b is greater than a and c\\n"); } else; { printf("c is greater than a and b\\n"); }return 0;}
in the below coding,if(c>=20)printf("c is grater than or equal to 20");else if(c<=20 && c>=10)printf("c is between 10 and 20");the value of c is 20,output will be "c is grater than or equal to 20",why the else if (qualifies for the same condition) does not get executed
write a c program to find the roots of a quadratic equation
727 visits
Outline:1. কন্ডিচনেল ষ্টেতমেন্ত আউতলাইন (Conditional statements Outline): এটা প্ৰোগ্ৰামত চৰ্ত সমূহ পৰীক্ষা কৰা (Check the conditions in a program) ষ্টেতমেন্ত বিলাক কি হয় (What are Statements) If ষ্টেতমেন্তৰ গাঠনি আৰু(Syntax for if and) If-else ষ্টেতমেন্ত (If-else Statement) ভুল (Errors)
1. কন্ডিচনেল ষ্টেতমেন্ত আউতলাইন (Conditional statements Outline): এটা প্ৰোগ্ৰামত চৰ্ত সমূহ পৰীক্ষা কৰা (Check the conditions in a program) ষ্টেতমেন্ত বিলাক কি হয় (What are Statements) If ষ্টেতমেন্তৰ গাঠনি আৰু(Syntax for if and) If-else ষ্টেতমেন্ত (If-else Statement) ভুল (Errors)
Show video info
Pre-requisite