C_24 Formatted Output Functions in C Language | printf() function in C | C Programming Tutorials

preview_player
Показать описание
In this video, I have discussed Formatted Output Function (printf()) with program in C Language

*******************************************

Connect & Contact Me:

*********************************************

More Playlists:

#cprogramming #jennyslectures #programming #clanguage #outputfunction
Рекомендации по теме
Комментарии
Автор

Finally I got the perfect channel for my coding..thnku maam

suryanshmishra
Автор

i've come back to brush up on some ansi c. i discovered you years ago so please forgive me for taking so long to subscribe. I'm going over just the specific video's i need detailed help with and that's why i come back to you. you tend to go into a little more detail and seem to have real grasp of the language as opposed to some of the other so called 'instructors'. i very much appreciate your channel and you skills have helped to better my skills. thanks again.

rljpdx
Автор

For the questions:

float a = 1234.345;
printf("%5.2", a);

Answer is 1234.35 on my IDE

You also asked if, is used as an operator or separator in printf and I am not sure but i think as a separator. If it was an operator i think there would be = for assignment

maryannemuthoni
Автор

im watching ur all videos of C .SUPERB mam.u have explained clearly.nd ur teaching is

akhilareddy
Автор

maa'm after this series please start c++ its a need ..nyc teaching concepts are very helpful

shiwanimishra
Автор

I was scrolling my insta and I saw video of
Cute reactions of mam than I got to know
That mam teaches coding I was in a search of a teacher for coding because it's my first year and I am not getting anything and I got you hats of to you mam
Appreciate your work and effort

mayankgupta
Автор

I never saw such a lecturer like u mam☺️lots of love ❤️

npavani
Автор

12:33 #include <stdio.h>
int main()
{
int a=1234;

printf("%d", a);
return 0;
}
output 6

#include <stdio.h>
int main()
{
int a=1234;

printf("%6d", a);
return 0;
}
output 1234
#include <stdio.h>
int main()
{
int a=1234;

printf("%06d", a);
return 0;
}
output: 001234

14:38 #include <stdio.h>
int main()
{
float a=1234.3456;

printf("%5.2f", a);
return 0;
}
output: 1234.35

15:16#include <stdio.h>
int main()
{
float a=1234.3456;

printf("%e", a);
return 0;
}
output: 1.234346e+003

fatima
Автор

mam in 13:08 I think the %10.2f is of the form %(count of whole number spaces.count of decimal spaces)f and not %(count of full number including ".".count of decimal spaces)f

parthshroff
Автор

14:39 #include <stdio.h>

int main() {
float a= 1234.345;
printf("%5.2f", a);

return 0;
}
o/p - 1234.34

_suranjandanda
Автор

One of the best teacher in my learning 👍👍

prabhjotsingh
Автор

Mam you are really the perfect lecturer...Your accent is really amazing.. thankyou ma'am ❤

shireesha
Автор

thanks mam for ur efforts everything at one place very well covered till now love u mam

maheshbankar
Автор

one of the best teacher for data str...❤️❤️

er.travelogueinfovideo
Автор

thank you so much mam., you r my GOD., i will pray for god that you will have long life

EnochRaja-vjie
Автор

Can u do a video on SQL Query ? Will be really useful !!!

jenithj
Автор

Mam I am listening your clases daily your explanation is amazing

uuxerxm
Автор

I kindly Request . To Pls Make Videos on Python As soon as possible mam ❤️ . Because we are Addicted to u 🙏☺️

shacks
Автор

That's really a good explanation. Thank u Mem!

psc_youtuber
Автор

Mam I got 1234.35 as output 14:39
When I had used %e I got 1.23e+03 as output thanks mam

lalitharamachandra