How do you write a program which produces its own source code as output?
No Answer is Posted For this Question
Be the First to Post Answer
What are pointers? What are different types of pointers?
What is void main ()?
how do you redirect stdout value from a program to a file?
Explain what are the __date__ and __time__ preprocessor commands?
How is pointer initialized in c?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
wats SIZE_T meant for?
find the sum of two matrices and WAP for it.
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
What is a static variable in c?
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 ].