WHAT IS FLOAT?
Answers were Sorted based on User's Feedback
Answer / jayant
ts a primitive data type used to store floating point values
like 12.009
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / santosh
float is a data type in which we store the floating point
numbers
| Is This Answer Correct ? | 2 Yes | 0 No |
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
Explain about the constants which help in debugging?
What is unary operator?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
how to find the given number is prime or not?
What is period operator in c?
What does nil mean in c?
How do I access command-line arguments?