How can I automatically locate a programs configuration files in the same directory as the executable?
Explain how can you restore a redirected standard stream?
Where are c variables stored in memory?
char ch="{'H','I',0};printf("%s",ch);what is output
Why is struct padding needed?
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
Why c is called free form language?
The differences between Windows XP and Windows Visa
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Explain what is wrong with this statement? Myname = ?robin?;
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
how to get the starting address of file stored in harddisk through 'C'program.