Answer Posted / santosh
float is a data type in which we store the floating point
numbers
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what are # pragma staments?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is int main () in c?
How do c compilers work?
When is a null pointer used?
How can you invoke another program from within a C program?
What is output redirection?
What does main () mean in c?
Why do we use stdio h and conio h?
Explain what is the difference between text files and binary files?
What does #pragma once mean?
Add Two Numbers Without Using the Addition Operator
Place the #include statement must be written in the program?
How can I generate floating-point random numbers?
What is fflush() function?