Answer Posted / siddiqui mohd. faisal
Do you mean that can we access one file from directory
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is extern c used for?
When should we use pointers in a c program?
How the c program is executed?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Can you write the function prototype, definition and mention the other requirements.
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Write a code of a general series where the next element is the sum of last k terms.
How do you use a 'Local Block'?
If errno contains a nonzero number, is there an error?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
How can I copy just a portion of a string?
What is the stack in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.