C++ If Else Statement | Learn Coding

preview_player
Показать описание
C++ full course 👇

c++ programs using classes 👇

Don't forget to tag our Channel...!
#controlflow
#decisionmaking
#conditionalstatements
#ifstatement
#ifelse
#ifelsestatement
#elseif
#nestedif
#CppProgramming
#LearnCoding

Content:-
---‐---‐--------------
Writer ✍️:- Ankush
Editing ✂️:- Akhilesh
Voice 🔊:- Akhilesh
Рекомендации по теме
Комментарии
Автор

Aapki vedio bahut helpful hai....Mujhe is baat par fakhr hai ke mujhe Urdu aati hai..warna mere kitne dost hain jo south se belong karte hain unhe koi acha faculty hi naseeb nahi ho raha you bhai....🥰🥰🥰

zainansari
Автор

Love you sir❤ for understanding very well

GhulamHussain-pioe
Автор

Tommarow is my paper I am watching your video at 12:18am

SajidBalti-wwjl
Автор

You doing gods work!! Great tutorial..

ayush
Автор

Task completed Sir, ...To check the positive or negative number

alirazaqureshi
Автор

//This is a Program to find the number is either positive or not.

#include<iostream>
#include<conio.h>
using namespace std;

int main()
{
int num;

cout<<"Enter the number: "<<endl;
cin>>num;

if(num > 0)
{
cout<<"Positive number."<<endl;
}

else
{
cout<<"Negative number."<<endl;
}

}

zainansari
Автор

#include<iostream>
using namespace std;

int main(){
int num;
cout<<"Enter number:";
cin>>num;
if(num>0)
{
cout<<"positive number";
}
else{
cout<<"Nagetive number";
}

}

salmannaghori
Автор

With the help of your you tube channel and the way of your teaching, I can understand each topic easily . Also I get better marks in PPS in second semester. Thank you sir.

jungkook-vbzq
Автор

Sir C Programming Graphics Function video

topsoundlovers
Автор

Sir please post a video about database connect with php used through visual studio .... ❤❤❤

tmjackff
Автор

Sir kya aap ye C++ course padha rahe ho uski ek playlist bana doge .

Pahle se bani playlist hai ek aur nayi bana do

Python aur C++ ka aur php ka bhi.

Thankyou 💋

samaine
Автор

Can You explain C# in one video with notes

Anshumanarya
Автор

Hello Bhai octal to binary (80) invalid ha ya nahi

harshsoni
Автор

Tomorrow is my paper and I am watching at 10

AliKhn-jy
Автор

Sir ki tarah hi content hai
Playlist link of os is

ByteMate-kush
Автор

Sir mujse coding nehi aata ye kya karu please reply

educentertagline
Автор

Sir mujhe blkul bhi coding nahi ate maii kya kruuu please btyyaaa

iamhimujoshi
Автор

"Can you solve some of my questions and make a video and upload it?"

SairaAmbreen-jf
Автор

#include<iostream>
using namespace std;
main()
{
string ans;
cout<<"Hi my name is poemon.\n what's your name?";
cin>>ans;
if(ans=="my name is aarohi")
{
cout<<"Nice to meet you";
}
else
{
cout<<"why do you want to know my name";
}
}



isme "if" statement excetute nahi ho raha

swayam