Write a program to reverse a string.
No Answer is Posted For this Question
Be the First to Post Answer
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
what is the difference between static variable and register variable?
what do you mean by inline function in C?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What is modeling?
What functions are used in dynamic memory allocation in c?
What do you mean by a local block?
How can I increase the allowable number of simultaneously open files?
How can a program be made to print the line number where an error occurs?
main() { printf(5+"Vidyarthi Computers"); }
What is the difference between array and pointer in c?
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.