Ticker

6/recent/ticker-posts

PROGRAME FOR THE FLOAT DIVISION


PROGRAME FOR THE FLOAT DIVISION


                                                             #include<stdio.h>

                                                            #include<conio.h>

                                                               float main()

                                                               {    int a, b;

             

                                                                  float div;

                                                         printf("Enter two integers,\n");
                                                         printf("-----------------------,\n");
                                                         printf("enter first integer:");
                                                          scanf("%d",&a);
                                                          printf("\nenter second integer:");
                                                          scanf("%d" ,&b);
                                                          div=a/(float)b;
                                                          printf("\nanswer of %d / %d is %f",a,b,div);
                                                        return 0;


                                                                         }

  I am requesting to all the learners .please don't  copy & paste the programme. just see the  programme analyse yourself and then type the programe by your own hands . then only you will gain the knowledge otherwise you will face so much difficulties  

       out put :-  

            

       

Post a Comment

0 Comments