How can I recover the file name given an open stream?
No Answer is Posted For this Question
Be the First to Post Answer
yogesh patil in dell
Explain in detail how strset (string handling function works )pls explain it with an example.
what is bitwise operator?
Can u return two values using return keyword? If yes, how? If no, why?
Write program to remove duplicate in an array?
What is bin sh c?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What is the concatenation operator?
how to find out the inorder successor of a node in a tree??
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
What are qualifiers?