give an example of type casting by a simple c program

Answer Posted / guest

[code]
#include<stdio.h>
main()
{
float a;
a = (float)15 / 3;
printf("%f\n",a);
}
[/code]

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which is more efficient, a switch statement or an if else chain?

776


Lists the benefits of c programming language?

810


What is pass by value in c?

775


What is c programming structure?

817


What are the general description for loop statement and available loop types in c?

896


what is the difference between 123 and 0123 in c?

938


What is header file definition?

808


Why main is used in c?

816


What is the purpose of clrscr () printf () and getch ()?

784


Why doesnt that code work?

779


What are types of structure?

822


What is a built-in function in C?

1099


pierrot's divisor program using c or c++ code

1959


What is the size of enum in bytes?

787


What is a const pointer?

798