C Language Tutorial Videos | Mr. Srinivas ▻For Registration : ▻Call: +91-8179191999 ▻ Visit Our Website: C-Language …
Table of Contents
Images related to the topic naresh i technology c language

Data Types – Part 3 | C Language Tutorial
Search related to the topic Data Types – Part 3 | C Language Tutorial
#Data #Types #Part #Language #Tutorial
Data Types – Part 3 | C Language Tutorial
naresh i technology c language
See all the latest ways to make money online: See more here
See all the latest ways to make money online: See more here
Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: https://goo.gl/HIB0wL
god of c programming
Sir, your teaching style, skill and everything is amazing🙏👍
ek terfaa
1 byte is equal to 2^8.. How can we write i didn't get it
Video 9 done
hello sir, when we are doing same program in turbo c++ .we are getting errors in the program.can you suggest any solution for this?
Sir , same concept is applicable in java or not sir ?
Sir when i try to compile this program of unsigned and signed there is an unexpected error occured
Nice
Sir, no offence but I think Chinese has more than 3000 symbols.
(Just heard some where)
Your teaching is very excellent one
sir now we run the eg programs it will run and we can get output
❤️
Nice video
Sir why use 2^8
@4.32
Best explanation ever!
https://youtu.be/BBF2FXpBQ4E
Is your all sllabus is in aktu
Thank u so much sir 😊😊
Sir,singed long range=?
Keep making this kind of videos…❤️❤️❤️
Sir will you explain engineering first semester mathematics 1
Sir what about integers and long integers sub types of integer.
We no need to study that?
Your teaching is very nice sir.
thank you for this beautiful explanation sir.
veera marrie veeera maarieee …level
How to compiler change into machine language?? How it work?
1. Why numbers are assigned numbers in ASCII system for example 0 = 48, 1 = 49 ….etc?
2. What is negative number(signed char has range from -128 to 127) in char system?
One of best teacher (sir srinivas) i came across 😄 the way in which you teach is really nice and everyone can easily understand how simply you give explanation to us thank you sir 😊😊😊😊
Thank you sir
U have such a brilliant teaching skill…in a simple way u just made this complex thing simepleee lots of love from kerela
best teacher you are sir
Write a c program to find whether the given number is power of 2 or not.
Input Format
Input an integer
Constraints
Nill
Output Format
YES/NO
Sample Input 0
8
Sample Output 0
YES
Sample Input 1
17
Sample Output 1
NO
include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main() {
int num;
int tempnum,flag;
scanf("%d",&num);
tempnum=num;
flag=0;
while(tempnum!=0)
{
if(tempnum%2!=0)
{
flag=1;
break;
}
tempnum= tempnum/2;
}
if(flag==0)
{
printf("YES",num);
}
else
{
printf("NO",num);
}
return 0;
}
Please explain this program logic sir
❤❤🇵🇰🇵🇰
Teach about type casting in c sir
Write a C program to accept 2 numbers, print the first number as a 5-digit number and print the second number in the next line with 5 width space