Answer Posted / william
I AGREE THE ASHA ANSWERS.....STATIC FUNCTION IS ONLY FOR
VISIBLE TO OTHER FUNCTION.....
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Do pointers store the address of value or the actual value of a variable?
What is sizeof return in c?
What does typeof return in c?
Why doesnt the call scanf work?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
How do I get an accurate error status return from system on ms-dos?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
How to find a missed value, if you want to store 100 values in a 99 sized array?
What's the right way to use errno?
Explain the difference between exit() and _exit() function?
What is FIFO?
write a program to generate address labels using structures?
Do you know the use of 'auto' keyword?