Answer Posted / santhosh
This Might Help You ...
http://user-interfaze.blogspot.com/2012/01/c-program-to-reverse-string-word-by.html
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is the use of linkage in c language?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What is binary tree in c?
Where are the auto variables stored?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Write a program for Overriding.
What is #line used for?
What is the difference between c and python?
What is the purpose of 'register' keyword?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What are the features of c language?
What is data types?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is the difference between text and binary i/o?