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
Explain what math functions are available for integers? For floating point?
Explain what standard functions are available to manipulate strings?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
any "C" function by default returns an a) int value b) float value c) char value d) a & b
To what value do nonglobal variables default? 1) auto 2) register 3) static
What is the value of uninitialized variable in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
12345 1234 123 12 1
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
What's the best way to declare and define global variables?
In c language can we compile a program without main() function?