How can I recover the file name given an open stream or file descriptor?
No Answer is Posted For this Question
Be the First to Post Answer
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
What is malloc calloc and realloc in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Why ca not I do something like this?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What are the uses of null pointers?
what is the use of c program?
4 Answers Synergy, Web Synergies,
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
Do pointers take up memory?
What is pointer to pointer in c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?