Part 2 | Variables Datatypes & I/O Operations | C Programming Tamil Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ธ.ค. 2024

ความคิดเห็น • 333

  • @LEARNERLIKEYOU
    @LEARNERLIKEYOU 10 วันที่ผ่านมา +1

    thankyou so much brother i am starting from tdy... let me start my journey🔥🔥

  • @welcomehackiamurphone1397
    @welcomehackiamurphone1397 ปีที่แล้ว +15

    1)#include
    main(void){;
    float number1,number2,result;
    printf("enter 2 number");
    scanf("%f%f",&number1,&number2);
    result=(number1/number2);
    printf("final result %f",result);
    }

  • @SumayyaAbu-zi3uj
    @SumayyaAbu-zi3uj ปีที่แล้ว +13

    Thank you so much sir.....this is my first time that i wrote coding myself even if i completed BCA......after 7 years....i am over the moon......

  • @manimekalai_kanthasamy
    @manimekalai_kanthasamy ปีที่แล้ว +7

    Area of Rectangular
    float length, width, area;
    printf("Enter your Length and Width");
    scanf("%f%f",&length,&width);
    area=length*width;
    printf("your area is : %f", area);
    Enter your Length and Width 25
    10
    your area is : 250.000000

  • @mageswaranmuthukumar5759
    @mageswaranmuthukumar5759 ปีที่แล้ว +4

    int main(void)
    {
    float lengthnumber,widthnumber,area;
    printf("Enter the length and width");
    scanf("%f%f",&lengthnumber,&widthnumber);
    area=lengthnumber*widthnumber;
    printf("Result :%f",area);
    return 0;
    }

  • @Krish7_77
    @Krish7_77 ปีที่แล้ว +2

    Simple program podave neriya mistake viduran but finally i complete it

  • @welcomehackiamurphone1397
    @welcomehackiamurphone1397 ปีที่แล้ว +8

    include
    main(void){;
    float length,width,area;
    printf("length,width");
    scanf("%f%f",&length,&width);
    area=length*width;
    printf("final result : %f",area);}

  • @mrvigneshviki7269
    @mrvigneshviki7269 9 หลายเดือนก่อน +1

    awesome explanation bro i got clear coding knowledge bro.

  • @manikandans3175
    @manikandans3175 ปีที่แล้ว +21

    1)Division
    Output:
    Enter the number:90
    Enter the number:3
    Div result is:30
    2)area calculation
    Output:
    Length:23.8
    Width:11.7
    Area of values:278.459991
    3)swap without temp
    Printf("a:%d b:%d",b,a);😅
    🎉

  • @poornimaoffl
    @poornimaoffl ปีที่แล้ว +2

    Getting inspire with ur words 🌋

  • @___its___my___life___journey__
    @___its___my___life___journey__ 5 หลายเดือนก่อน

    bro its vety useful each and every program am practice and i got the output....I watched many more vedios before this vedio..but this is the best vedio..thanks a lott

    • @brototypetamil
      @brototypetamil  5 หลายเดือนก่อน

      All the best , keep supporting

  • @sarves2482
    @sarves2482 ปีที่แล้ว +7

    Area of rectangle
    #include
    #include
    int main(void) {
    float length,width,area;
    setbuf(stdout,NULL);
    printf("enter the numbers");
    scanf("%f%f",&length,&width);
    area = length * width;
    printf("Area of Rectangle: %f",area);
    return EXIT_SUCCESS;
    }

  • @rajesha4408
    @rajesha4408 ปีที่แล้ว +1

    ❤🎉This is very valuable series.

  • @bhuvaneshwaric9514
    @bhuvaneshwaric9514 9 หลายเดือนก่อน +4

    Hi,I am just enjoying this coding channel and I have a doubt why we are using a eclipse ide ? we can use turbo c++ ?

  • @muhammedumar4281
    @muhammedumar4281 ปีที่แล้ว +17

    another method swapping:
    Int a=30,b=20;
    Printf("a:%d b:%d" ,b, a);
    Output👇
    a:20 b:30

    • @mohamedanas8493
      @mohamedanas8493 ปีที่แล้ว

      We can swap and print by this method but we cannot use it for another purpose like doing operations

    • @svsanjay9787
      @svsanjay9787 ปีที่แล้ว

      In this swap method is just Temporary not permanent We can't use another place

  • @sureshraina4131
    @sureshraina4131 ปีที่แล้ว

    include
    int main() {
    float num1,num2,divide;
    printf("enter a two numbers");
    scanf("%f%f",&num1,&num2);
    divide=num1/num2;
    printf("divide is:%f",divide);
    return 0;
    }

  • @glowlovely4170
    @glowlovely4170 ปีที่แล้ว +3

    Very clear explanation bro 😍

  • @mageswaranmuthukumar5759
    @mageswaranmuthukumar5759 ปีที่แล้ว +2

    int main(void)
    {
    int a=10,b=20;
    printf("a %d b %d",b,a);
    return 0;
    }

  • @abinayatharmarajan29
    @abinayatharmarajan29 9 หลายเดือนก่อน +2

    1.Division
    #include
    #include
    int main(void) {
    int num1,num2,Result;
    printf("Enter 2 numbers");
    scanf("%d%d",&num1,&num2);
    Result=num1/num2;
    printf("division :%f",Result);
    return EXIT_SUCCESS;
    }
    2.Rectangle
    #include
    #include
    #include
    int main(void) {
    int length,width,area;
    printf("enter length and width");
    scanf("%f%f",&length,&width);
    area=length * width;
    printf("area of rectangular:%f",area);
    return EXIT_SUCCESS;
    }
    3.Swap
    #include
    #include
    int main(void) {
    int c=35,f=45,e;
    e=c;
    c=f;
    f=e;
    printf("c:%d f:%d
    ",c,f);
    return 0;
    }

    • @kdzcreations744
      @kdzcreations744 9 หลายเดือนก่อน

      Ithula int nu data type kuduthutu aprm ye %f kuduthuirkinga

    • @abinayatharmarajan29
      @abinayatharmarajan29 8 หลายเดือนก่อน

      @@kdzcreations744 naa float kudukkama mathi int nu kuduthutan ..

  • @thalapathyvijayeidtz9192
    @thalapathyvijayeidtz9192 ปีที่แล้ว

    Thank you sir Nan assignment la iruka 3 um poten sir nana swap ku user ta irrunthu value vangi swap pannen sir tq sir

  • @Icecold-creation.
    @Icecold-creation. ปีที่แล้ว +1

    int main(void) {
    float number1,number2,result;
    printf("enter 2 number");
    scanf("%f%f",&number1,&number2);
    result=number1+number2;
    printf("result is: %f",result);
    return EXIT_SUCCESS;
    }

  • @ajithpalanisamy4073
    @ajithpalanisamy4073 4 หลายเดือนก่อน +1

    Length 10,width 2.2
    float length, width , area ;
    Printf("Enter length,width");
    Scanf("%f%f" ,& length,& width);
    area= (length*width);
    Printf("your ans is : %f ",area);
    And 22.000❤
    Swap
    a= 10
    b=20
    Code
    Int a=10,b=20;
    Printf("a:%d b:%d , b,a);
    Ans b= 10 ,a=20

  • @memesandcringe5706
    @memesandcringe5706 ปีที่แล้ว +5

    #include
    int main(void) {
    float lenth,width,area,result;
    printf("Enter Number");
    scanf("%f",&lenth);
    printf("Entet Number");
    scanf("%f",&width);
    printf("Enter Number");
    scanf("%f",&area);
    result=lenth*width*area;
    printf("Result is %f",result);
    return 0;
    }

  • @RRagul-dr7vx
    @RRagul-dr7vx 8 หลายเดือนก่อน +1

    Thanks brooo 😊😊😊

  • @subhikshag4443
    @subhikshag4443 3 หลายเดือนก่อน

    Assignment completed successfully

  • @l.ashokadithya4203
    @l.ashokadithya4203 ปีที่แล้ว +3

    1)
    #include
    int main(void)
    {
    int num1,num2;
    float Result;
    printf("Lets perform the funtion division
    ");
    printf("The number on the numerator : ");
    scanf("%d",&num1);
    printf("The number on the denominator : ");
    scanf("%d",&num2);
    Result=num1/num2;
    printf("The division of two numbers %f",Result);
    return 0;
    }
    2)
    #include
    int main(void)
    {
    float length,breadth,area;
    printf("Lets find out the area of the rectangle
    ");
    printf("The length of the rectangle : ");
    scanf("%f",&length);
    printf("The breadth of the rectangle : ");
    scanf("%f",&breadth);
    area=length*breadth;
    printf("The area of the rectangle is %f",area);
    return 0;
    }
    3)
    #include
    int main(void)
    {
    int a=20;
    int b=30;
    printf("we intialised a and b as 20 and 30 respectively
    ");
    printf("Lets perfom the swapping function with temp variable
    ");
    a=a+b;
    b=a-b;
    a=a-b;
    printf(" The value of integer a after swapping is %d
    ",a);
    printf(" The value of integer b after swapping is %d
    ",b);
    return 0;
    }

  • @batmanbatman413
    @batmanbatman413 6 หลายเดือนก่อน

    today class well sir❤

  • @professionalgaming7278
    @professionalgaming7278 2 หลายเดือนก่อน +1

    Bro java ku innum video podunga bro

  • @ECE621
    @ECE621 ปีที่แล้ว +1

    Fime time watch your channel

  • @PradeepKumar-pn8li
    @PradeepKumar-pn8li 9 หลายเดือนก่อน

    int main()
    {
    float num1,num2,division;
    printf("Enter 2 number");
    scanf("%f%f",&num1,&num2);
    division=num1/num2;
    printf("result is %f",division);
    }

  • @kesavanp2720
    @kesavanp2720 ปีที่แล้ว +26

    Please make a video for java bro

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว +16

      part 7 le irunthu Java than bro

  • @techthief3278
    @techthief3278 ปีที่แล้ว +1

    Daily Tips ❤‍🔥

  • @Shajan0008-8
    @Shajan0008-8 ปีที่แล้ว

    Really thankfull to you bro❤

  • @sarves2482
    @sarves2482 ปีที่แล้ว +1

    Division
    #include
    #include
    int main(void) {
    int Num1,Num2;
    float Division;
    setbuf(stdout,NULL);
    printf("Enter 2 Numbers :");
    scanf("%d%d",&Num1,&Num2);
    Division = Num1 / Num2;
    printf("Result is %f" ,Division);
    return EXIT_SUCCESS;
    }
    The process is while dividing 2 integers the answer will also be an integer.
    If 10/50= 0.2 then the answer will be in integer form 0
    After applying float datatype the answer becomes 0.00000

  • @HarishHarish-zr6fc
    @HarishHarish-zr6fc 5 หลายเดือนก่อน

    Swapping without using temp
    { int a, b, d;
    Printf("enter a 2 value");
    scanf("%d%d", &a&b);
    d=a;
    a=b;
    b=d;
    printf("a:%d b:%d", a, b);
    return EXIT_SUCCESS;}
    Output:
    Enter a 2 value 5
    8
    a:8 b:5

  • @SriRam-sf3vo
    @SriRam-sf3vo ปีที่แล้ว +4

    // Accept two numbers from the user and perform division.
    #include
    int main(void) {
    int Num1,Num2;
    float Result;
    printf("Enter Num1:");
    scanf("%d",&Num1);
    printf("Enter Num2:");
    scanf("%d",&Num2);
    Result=(Num1/Num2);
    printf("Result is:%f",Result);
    return 0;
    }
    // Accept length and width of rectangle from the user and calculate area.
    #include
    int main(void)
    {
    float length,width,area;
    printf("enter the length of the rectangle:");
    scanf("%f",&length);
    printf("enter the width of the rectangle:");
    scanf("%f",&width);
    area=length*width;
    printf("the area of rectangle is:%f",area);
    return 0;
    }
    // program to swap two number without using temp variable.
    #include
    int main(void)
    {
    int a,b;
    printf("enter the value of the a:");
    scanf("%d",&a);
    printf("enter the value of the b:");
    scanf("%d",&b);
    a=a+b;
    b=a-b;
    a=a-b;
    printf("After swapped : a=%d b=%d",a,b);
    return 0;
    }

  • @content_irukku.maamey
    @content_irukku.maamey 5 หลายเดือนก่อน

    #include
    #include
    int main(void) {
    setbuf(stdout,NULL);
    float lengthnum,widthnum,area;
    printf("enter lengthnum and widthnum");
    scanf("%f%f",&lengthnum,&widthnum);
    area=lengthnum*widthnum;
    printf("the area of triangle is :%f",area);
    return EXIT_SUCCESS;
    }

  • @sindhupriya9703
    @sindhupriya9703 5 หลายเดือนก่อน

    int main() {
    float length,width,area;
    {
    printf("enter the length number
    ");
    scanf("%f", &length);
    printf("enter the width number
    ");
    scanf("%f", &width);
    area=length*width;
    printf("the area of rectangle %f
    ",area );
    }
    result
    enter the length number
    10
    enter the width number
    2
    the area of rectangle 20.000000

  • @demonsarmyft5348
    @demonsarmyft5348 ปีที่แล้ว

    Mass nov❤❤

  • @ECE621
    @ECE621 ปีที่แล้ว

    Goosebumps

  • @veneelonlinedata8394
    @veneelonlinedata8394 ปีที่แล้ว

    Super bro and thanks ❤️

  • @wafburfi
    @wafburfi 10 หลายเดือนก่อน

    1)
    int main(void) {
    float num 1, num 2, result;
    printf("Enter 2 Numbers");
    scanf("%f%f",&num1,&num2);
    result=num1/num2;
    printf("Your result is : %f",result);
    return EXIT_SUCCESS;
    }

    • @wafburfi
      @wafburfi 10 หลายเดือนก่อน

      idhu correct aah bro

  • @sindhupriya9703
    @sindhupriya9703 5 หลายเดือนก่อน +1

    float n1,n2,add,div;
    {
    printf("enter the n1 number
    ");
    scanf("%f", &n1);
    printf("enter the n2 number
    ");
    scanf("%f", &n2);
    add=n1+n2;
    div=(n1/n2);
    printf("the add %f
    ",add );
    printf("the result %f", div);
    }

  • @AkshayaR-l1y
    @AkshayaR-l1y 10 หลายเดือนก่อน

    1)#include
    #include
    int main(void){
    int num1,num2;
    float result;
    printf("Enter first number:");/*Getting first number as input from user*/
    scanf("%d",&num1);
    printf("Enter Second number:");/*Getting second number as input*/
    scanf("%d",&num2);
    result=num1/num2;
    printf("The result of division is: %f
    ", result);
    }

  • @saravanao7_x951
    @saravanao7_x951 ปีที่แล้ว +2

    Puts not only mac brother
    Puts also available in windows

  • @PradeepKumar-pn8li
    @PradeepKumar-pn8li 9 หลายเดือนก่อน

    float length,width,area;
    printf("Enter length");
    scanf("%f",&length);
    printf("Entered length is %f",length);
    printf("Enter width");
    scanf("%f",&width);
    printf("Enterd width is %f",width);
    area=length*width;
    printf("result is %f",area);
    }

  • @TXKiran
    @TXKiran 11 หลายเดือนก่อน +5

    output la problem varudhu same code of yours

    • @brototypetamil
      @brototypetamil  11 หลายเดือนก่อน

      unga problem screenshot eduthu namma telgram channel la kelunga brother namma tech team ungla support pannuvanga , telgram groupla join panradhukaana registration link description la irukku

    • @Sasha_sai
      @Sasha_sai 7 หลายเดือนก่อน

      Really it is more useful. Ur teaching is also too good to understand.

    • @mr.baldmantamil
      @mr.baldmantamil 3 หลายเดือนก่อน

      Same problem did you, get the answer bro, help me

  • @thalapathyveriyan3541
    @thalapathyveriyan3541 ปีที่แล้ว +1

    Super Bro

  • @blaschannel8764
    @blaschannel8764 ปีที่แล้ว

    Thank you bro

  • @lakshmanan2202
    @lakshmanan2202 ปีที่แล้ว

    Avarage program
    #include
    int main()
    {
    int a=20,b=30,c=40,Temp;
    Temp=a;
    a=c;
    c=Temp;
    printf("a:%d,b:%d,c:%d",a,b,c);
    return 0;
    }

  • @bharathi0606
    @bharathi0606 ปีที่แล้ว +4

    1.Accept two numbers from the user and perform division (Result in Float)
    #include
    #include
    int main(void) {
    float number1,number2,division;
    printf("Enter 2 Numbers");
    scanf("%f%f",&number1,&number2);
    division=number1/number2;
    printf("result is : %f",division);
    return EXIT_SUCCESS;
    }
    Output:
    Enter 2 Numbers20
    3
    result is : 6.666667
    2.Accept the length and width of a rectangular from the user as input and calculate the area of the rectangular.
    #include
    #include
    int main(void) {
    float length,width,area;
    printf("Enter length,width");
    scanf("%f%f",&length,&width);
    area=length*width;
    printf("result is : %f",area);
    return EXIT_SUCCESS;
    }
    Output:
    Enter length,width4.8
    2.3
    result is : 11.040000
    3.Swapping two variables without temp
    #include
    #include
    int main(void) {
    int a,b;
    printf("Enter a");
    scanf("%d",&a);
    printf("Enter b");
    scanf("%d",&b);
    a=a+b;
    b=a-b;
    a=a-b;
    printf("a : %d",a);
    printf("b : %d",b);
    return EXIT_SUCCESS;
    }
    Output:
    Enter a20
    Enter b60
    a : 60b : 20
    Thank you 🈲

    • @MrSanjayThoughts
      @MrSanjayThoughts ปีที่แล้ว

      One doubt in 2nd question.
      We can also use int or only float ?

    • @bharathi0606
      @bharathi0606 ปีที่แล้ว

      Length and width are integers number we can use int, but length and width also have floating point(like length=3.5, width=11.8). So we can only use float.
      This program length and width are float, so we use float.
      Thanks for asking your question 😊

    • @Thiru-ib6sj
      @Thiru-ib6sj ปีที่แล้ว

      ​@@bharathi0606appadina int use panna kudathuda

  • @kavinsharvesh1453
    @kavinsharvesh1453 ปีที่แล้ว

    Super teaching ya

  • @2bobinyt
    @2bobinyt 3 หลายเดือนก่อน

    Bro can i use visual Studio code for c program

    • @brototypetamil
      @brototypetamil  3 หลายเดือนก่อน

      Yes ungalukku comfortable aana IDE use panikklaam brother

  • @AathifaSamsun
    @AathifaSamsun 7 หลายเดือนก่อน

    1)#include
    #include
    int main(void){
    float num1,num2,result;
    setbuf(stdout,NULL);
    printf("enter 2 num");
    scanf("%f%f",&num1,&num2);
    result=num1/num2;
    printf("the result is : %f", result);
    }
    2)#include
    #include
    int main(void){
    float length,width,area;
    setbuf(stdout,NULL);
    area=length*width;
    printf("the area is : %f",area);
    }

  • @Ashwinmp7
    @Ashwinmp7 7 หลายเดือนก่อน

    bro we want datastructures from you pls do videos

    • @brototypetamil
      @brototypetamil  7 หลายเดือนก่อน

      Kandipa pandren bro

    • @Ashwinmp7
      @Ashwinmp7 7 หลายเดือนก่อน

      @@brototypetamil soon bro we are waiting

  • @sutharsanbabu2152
    @sutharsanbabu2152 ปีที่แล้ว

    3. Swapping
    Don't give temp
    Simple give
    a=b;
    b=a;

  • @priyadharshanam334
    @priyadharshanam334 ปีที่แล้ว

    Tq🤗

  • @smuvideos7219
    @smuvideos7219 ปีที่แล้ว

    Correct ah bro

  • @amazonprime995
    @amazonprime995 ปีที่แล้ว +1

    1)
    #include
    int main() {
    int a,b ;
    float r;
    printf("enter two numbers : ");
    scanf("%d%d",&a,&b);
    r=(a/b);
    printf("your answer is : %f",r);
    return 0;
    }
    OUTPUT
    enter two numbers : 90 30
    your answer is : 3.000000
    2) #include
    int main() {
    float length,width,area;
    printf("enter the length : ");
    scanf("%f",&length);
    printf("enter the width : ");
    scanf("%f",&width);

    area=length * width;
    printf("Your area is : %f",area);


    return 0;

    }
    output
    enter the length : 5.5
    enter the width : 6.1
    Your area is : 33.549999

  • @sankarmilksankarmilk1068
    @sankarmilksankarmilk1068 4 หลายเดือนก่อน

    Python programming course video post pannunga bro

    • @brototypetamil
      @brototypetamil  4 หลายเดือนก่อน

      kandippa will do soon

  • @RandomnReactions
    @RandomnReactions ปีที่แล้ว

    dvision
    #include
    #include
    int main(void) {
    float num1,num2,division;
    setbuf(stdout,NULL);
    printf("enter 2 numbers");
    scanf("%f%f",&num1,&num2);
    division=num1/num2;
    printf("result is :%f",division);
    return EXIT_SUCCESS;
    }
    area of rectangle
    #include
    #include
    int main(void) {
    float length,width,area;
    setbuf(stdout,NULL);
    printf("enter length,width");
    scanf("%f%f",&length,&width);
    area=length*width;
    printf("area of reactangle is :%f",area);
    return EXIT_SUCCESS;
    }

  • @somasundaramn.k3955
    @somasundaramn.k3955 ปีที่แล้ว

    Actually naa oru web sites create pannum bro. Antha reason kaaga thaa youtube search pannittu erunthen. But, unga vedios paathathum, ivlo thaa codings ha nu feel aaguthu.
    Avlo easy and simple method la expline pannuringa

  • @mastertheblaster4017
    @mastertheblaster4017 10 หลายเดือนก่อน +2

    #include
    #include
    int main(void) {
    float length,width,area;
    setbuf(stdout,NULL);
    printf("Enter length,width");
    scanf("%f%f",&length,&width);
    area=length*width;
    printf("The area is:%f",area);
    return EXIT_SUCCESS;
    }

  • @shreen2465
    @shreen2465 ปีที่แล้ว +1

    Bro while executing the code in my laptop I'm getting permission denied by mingw i don't know what to do please help me

  • @THARIQ-
    @THARIQ- ปีที่แล้ว

    Just now started 100k Coding Challenge my Day 1 Assignment is here
    //swapping 2 values without temp
    #include
    void main(){
    int a=10,b=20;
    printf("Before Swap
    ");
    printf("value of a %d
    ",a);
    printf("value of b %d ",b);
    a=a+b;
    b=a-b;
    a=a-b;
    printf("
    After Swap");
    printf("
    value of a %d
    ",a);
    printf("value of b %d ",b);
    }
    //Division Program
    #include
    void main(){
    int a,b,divide;
    printf("Enter Value for A : ");
    scanf("%d",&a);
    printf("Enter Value for B : ");
    scanf("%d",&b);
    divide=a/b;
    printf("Divided value is %d ",divide);
    }
    //Area of rectangle
    #include
    void main()
    {
    float length,width,area;
    printf("Program to Calculate Area_of_the_Rectangle
    ");
    printf("Enter value for Length :");
    scanf("%f", &length);
    printf("
    Enter value for Width :");
    scanf("%f", &width);
    area = length * width;
    printf("Area of the Rectangle based on your input is %f ",area);
    }

  • @devisri4966
    @devisri4966 ปีที่แล้ว

    program3
    #include
    #include
    int main(void) {
    int a=10,b=20;
    setbuf(stdout,NULL);
    a=a+b;
    b=a-b;
    a=a-b;
    printf("a: %d b: %d",a,b);
    return EXIT_SUCCESS;
    }
    program2
    #include
    #include
    int main(void) {
    float length,breath,area;
    setbuf(stdout,NULL);
    printf("enter the rectangular");
    scanf("%f%f",&length,&breath);
    area=length*breath;
    printf("the result is: %f",area);
    return EXIT_SUCCESS;
    }
    program1
    include
    include
    int main(void) {
    float num1,num2,divde;
    setbuf(stdout,NULL);
    printf("enter 2 numbers");
    scanf("%f%f",&num1,&num2);
    divde=num1/num2;
    printf("result is : %f",divde);
    return EXIT_SUCCESS;
    }

  • @RiyasAhamed-x2i
    @RiyasAhamed-x2i ปีที่แล้ว +1

    Sir program yellam correct irukku but console output Enter a Number show agala .what is the problem sir?

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      please ask in our telegram group , namma tech team ungalukku support tharuvanga

    • @Ms.Minion
      @Ms.Minion ปีที่แล้ว

      ​@@brototypetamilFor windows OS Put this command after Variable declaration
      setbuf(stdout,NULL);
      Press the stop 🛑 button in the left side top corner 2,3 times then Save Build Run
      It works!!!

    • @sivaprasanth4790
      @sivaprasanth4790 ปีที่แล้ว

      @@Ms.Minion setbuf(stdout,null); atha enga podanum

  • @crimehunter9502
    @crimehunter9502 8 หลายเดือนก่อน

    bro in this i encountered an issue with the scanf function while i entered a scanf function it shows nothing in my console after i entered a value like 20 the output was like
    20
    enter a numberyou entered 20
    but if i removed it shows the out put properly

    • @crimehunter9502
      @crimehunter9502 8 หลายเดือนก่อน

      can any one help me with this issue

    • @brototypetamil
      @brototypetamil  8 หลายเดือนก่อน

      Bro doubts namma telegram groupilea share pannungea namma team help pannuvaru
      Descriptionilea telegram group link irruk

    • @crimehunter9502
      @crimehunter9502 8 หลายเดือนก่อน

      @@brototypetamil bro ketten no reply

  • @sbwaxan8407
    @sbwaxan8407 ปีที่แล้ว +3

    37:22 number(20) enter panna piragu bro
    20
    Enter a numberyou have entered20
    Itha mathirithan bro varuthu 😕🙁

  • @ManjuPriyanka-c8z
    @ManjuPriyanka-c8z ปีที่แล้ว +1

    Sir..I have registered in brototype website but now I can't able to join in telegram page .what to do?

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      It will be a network issue, try again after changing the data or wifi.

  • @NareshKumar-dg1tg
    @NareshKumar-dg1tg ปีที่แล้ว

    Make a video for java , bro

  • @v.yukeshwaranbca-7802
    @v.yukeshwaranbca-7802 ปีที่แล้ว

    Bro can I use code blocks

  • @venkataramanansugumar9020
    @venkataramanansugumar9020 11 หลายเดือนก่อน

    division
    #include
    #include
    int main(void) {
    float a,b,answer;
    printf("enter two numbers");
    scanf("%f%f",&a,&b);
    answer=a/b;
    printf("answer: %f",answer);
    return EXIT_SUCCESS;

  • @Manoj-um9pi
    @Manoj-um9pi ปีที่แล้ว

    I completed tha assignment but from laptop 😅😊

  • @lakshmanan2202
    @lakshmanan2202 ปีที่แล้ว

    Assignment Answers
    1.#include
    int main()
    {
    float Num1,Num2,Result;
    printf("Enter Two Numbers:");
    scanf("%f%f",&Num1,&Num2);
    Result=Num1/Num2;
    printf("Result is %f",Num1,Num2);
    return 0;
    }
    O/p
    Enter Two Numbers:5
    5
    Result is 5.000000
    2.#include
    int main()
    {
    float length,width,area;
    printf("Enter length and width values:");
    scanf("%f%f",&length,&width);
    area=length*width;
    printf("the area is:%f",area);
    return 0;
    }
    O/p
    Enter length and width values:5
    5
    the area is:25.000000
    3.#include
    int main()
    {
    int a=10,b=20;
    printf("a:%d,b:%d",b,a);
    return 0;
    }
    O/p
    a:20,b:10

  • @prakashakash7637
    @prakashakash7637 ปีที่แล้ว

    In this average project, not run well, error showing float num1, num2, num3, average;
    Main problem is float

  • @MPVijay-nq7dy
    @MPVijay-nq7dy ปีที่แล้ว +1

    Input practical program la 18th and 19th line la error varuthu
    AND
    Output window la blank screen ah irukkuthu but number enter panna mudium aprom ENTER button click pannuna two PRINTF statement um same line la print aairuthu
    ANY ONE SOLUTION SOLLUNGA GUYS

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      please ask in our telegram group , namma tech team ungalukku support tharuvanga

    • @MassPanrom
      @MassPanrom ปีที่แล้ว

      same problem!
      solution kedachal solunga bro plz

    • @MPVijay-nq7dy
      @MPVijay-nq7dy ปีที่แล้ว

      How to join telegram channel??

  • @TechnologicalAi
    @TechnologicalAi ปีที่แล้ว

    1
    #include
    int main() {
    int num1, num2;
    float result;
    printf("Enter first number: ");
    scanf("%d", &num1);
    printf("Enter second number: ");
    scanf("%d", &num2);
    result = (float)num1 / num2;
    printf("Result of division: %f", result);
    return 0;
    }

  • @RajkumarParamasivam-f1l
    @RajkumarParamasivam-f1l 10 หลายเดือนก่อน

    I started to by using sample program Hello world program build was success and o/p came, but while using scanf function for input function build got failed I dont know why... I stuck on this cant move.. pls help what is the problem .................

    • @brototypetamil
      @brototypetamil  9 หลายเดือนก่อน

      neenga face panra problem namma screenshot eduthu namma telegram groupla kelunga namma tech team ungalukku full support tharuvanga , telegram la join pnradhukana registration link description la irukku

  • @SujithDivine
    @SujithDivine 3 หลายเดือนก่อน

    Mingw cannot open output file ... permission deined it's showing...how to sole this ..can anyone help me with this problem please

    • @brototypetamil
      @brototypetamil  3 หลายเดือนก่อน

      neenga face panra technical problem solve panna, namma description la irukkra registration link la register panna namma tech support telegram group la add aveeenga adhula keta podhum help pannuvanga

  • @manimekalai_kanthasamy
    @manimekalai_kanthasamy ปีที่แล้ว +2

    Division
    int num1,num2;
    float division;
    printf("Enter 2 numbers :");
    scanf("%d%d",&num1,&num2);
    division=num1/num2;
    printf("your result is : %f",division);
    Enter 2 numbers: 10
    2
    your result is : 5.000000

  • @Sabarnibharathi
    @Sabarnibharathi ปีที่แล้ว

    Bro naa online complier use pannalam.ma

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว +1

      initially you can use but IDE use panni palagradhu nalladhu

  • @Sk-zf9eb
    @Sk-zf9eb 11 หลายเดือนก่อน

    int main() {
    int bigno,smlno,sum;
    printf("enter 1 st no. is bigger 2 nd no. is small: ");
    scanf("%d%d",&bigno,&smlno);
    sum=bigno/smlno;
    printf("you ented value %d",sum);
    return 0;
    }

    • @Sk-zf9eb
      @Sk-zf9eb 11 หลายเดือนก่อน

      1st

    • @Sk-zf9eb
      @Sk-zf9eb 11 หลายเดือนก่อน

      3rd
      float a=1,b=2,temp;
      temp=a;
      a=b;
      b=temp;
      printf("a %f b %f",a,b);
      return 0;

  • @afthapali7862
    @afthapali7862 ปีที่แล้ว +1

    3 program
    #include
    #include
    int main(void){
    int a=20,width=10,area;
    area=a;
    a=width;
    width=area;
    printf("a:%d width:%d",a,width);
    return EXIT_SUCCESS;
    }

  • @blackdevilgaming4175
    @blackdevilgaming4175 9 หลายเดือนก่อน

    bro unga board la scanf("%d ,&a); wrong , scanf("%d",&a); correct double quets ( " ) missing.

  • @sarves2482
    @sarves2482 ปีที่แล้ว +1

    Swapping 2 numbers without temp variable
    Method 1 : User giving input in the console.
    #include
    #include
    int main(void) {
    float num1,num2;
    setbuf(stdout,NULL);
    printf("Enter the Numbers: ");
    scanf("%f%f",&num1,&num2);
    printf("num1 %f num2 %f",num2,num1);
    return EXIT_SUCCESS;
    }
    Method 2 : assigning value in the program itself.
    #include
    #include
    int main(void) {
    float num1=10,num2=20;
    setbuf(stdout,NULL);
    printf("num1 %f num2 %f",num2,num1);
    return EXIT_SUCCESS;
    }

  • @aneera-shamim5625
    @aneera-shamim5625 ปีที่แล้ว +1

    Bro setbuf(stdout,NULL);
    Endha command use pannadha enaku output la printf la use pandra sentence proper ra kamikudhu y bro

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว +1

      Kindly Please ask technical doubts in our telegram group

  • @bhavanilakshmi11a12
    @bhavanilakshmi11a12 ปีที่แล้ว +1

    Bro, i have tried n no of times. Still I haven't get output yet, idk what's wrong. It'll be more good if you help me to fix my problem

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      Join the Telegram group, our tech support will help you. Join here :brototype.com/ta/100k/?ref=ytdescription

  • @kingsonsamuel
    @kingsonsamuel ปีที่แล้ว

    Bro, i have filled the details in the link you have shared for the telegram group. But i havent got any link to join the group.
    Im just starting with your classes. There is 0 error, 0 warning. but no output is shown in the console while running the program.
    Please help.

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      DM to @brototype.tamil in instagram

    • @kingsonsamuel
      @kingsonsamuel ปีที่แล้ว

      @@brototypetamil thanks. Will do.

  • @maheshwaransubramani4588
    @maheshwaransubramani4588 ปีที่แล้ว

    bro,
    i facing some issue in my console o/p, after run as administrator console screen is empty then i am typing 10 it showing as : Enter a numberyou have entered 10

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      Please ask your technical doubts in our telgram group our tech team will support you

  • @ishackissz9081
    @ishackissz9081 11 หลายเดือนก่อน

    Bro everytime launch failed bianary not found solution podu bro 😢

    • @brototypetamil
      @brototypetamil  11 หลายเดือนก่อน +1

      unga problem screenshot eduthu namma telgram channel la kelunga brother namma tech team ungla support pannuvanga , telgram groupla join panradhukaana registration link description la irukku

    • @ishackissz9081
      @ishackissz9081 11 หลายเดือนก่อน

      @@brototypetamil bro solution kedachitu thankyou

  • @craftogamia3010
    @craftogamia3010 ปีที่แล้ว

    Sir my output is if i entered 20 then only you have entered 20 but yours enter a number shows

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      Join the Telegram group, our tech support will help you. Join here :brototype.com/ta/100k/?ref=ytdescription

  • @annah_0304
    @annah_0304 6 หลายเดือนก่อน

    i have build the project but after running the console shows INFO: NOTHING TO BUILT

    • @brototypetamil
      @brototypetamil  6 หลายเดือนก่อน

      Telegram groupla unga issue sollunga namma tech team help pannuvanaga

  • @vasanth777-y4y
    @vasanth777-y4y 9 หลายเดือนก่อน

    vs code la panna mudiyuma

  • @Sheikfaiz1
    @Sheikfaiz1 8 หลายเดือนก่อน

    Bro output file cannot open permissions denied varuthu output console empty erukhu so what can i do

    • @brototypetamil
      @brototypetamil  8 หลายเดือนก่อน

      Bro ask this kind of doubts in our telegram group

    • @mr.aakash805
      @mr.aakash805 6 หลายเดือนก่อน +2

      after int main add this code" setbuf(stdout,NULL); "

  • @Krish7_77
    @Krish7_77 ปีที่แล้ว

    Hiii bro here my program to swap two numbers without using temp variable.
    #include
    #include
    Void main()
    {
    Int a=77,b=75;
    a=b;
    b=77;
    Printf("a:%d b:%d",a,b);
    Printf("
    !!! thank you bro!!!");
    Printf("
    !!!coding is fun!!!"):
    getch();
    }

  • @manoofkhan4949
    @manoofkhan4949 ปีที่แล้ว

    having issue on running project it shows errors please help me to clear this

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว +1

      Kindly Please ask in our telegram group for tech support

  • @Rakesh_Neet
    @Rakesh_Neet ปีที่แล้ว

    Bro neenga sonna mari na already mbbs ennoda goal set panni athu ku prepare panni neet exam ippo eluthiruka but ennaku kedaikathu lite ah theriyuthu atha nala tha na engineering pakom polanu coding kathu ka vanthen

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      Ok, you can continue the tutorial and also connect with us on 9995270355 our team can guide you.

  • @MANG____
    @MANG____ ปีที่แล้ว

    How to add eclipse in disktop 😢on Ubuntu and windows

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      Join the Telegram group our tech support will clear your doubts there. Join here: brototype.com/ta/100k/?ref=ytdescription

  • @ajiths.l7937
    @ajiths.l7937 ปีที่แล้ว

    I have some doubt , where do i find telegram channel link???

    • @brototypetamil
      @brototypetamil  ปีที่แล้ว

      Join the Telegram group, our team will help you. Join here :brototype.com/ta/100k/?ref=ytdescription