Question

please help me , I don't know from where to start . need to write a...

please help me , I don't know from where to start .

need to write a comprehensive program by c language to handle a problem with at least 200 linces of code (LOC) . Topic of your own choice , write the whole topic definition and workflow (designs) by Chart or Figure , and the core concepts for explaining the code well , and finally provide the whole code with notes in the report.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1. Program :

#include <stdio.h>

int main()

{
int num, rev = 0, rem, orig;
printf("Enter a number integer: ");
scanf("%d", &num);
orig = num;
  
// Reversed integer is stored in rev
  
   while (num != 0)
   {
rem = num % 10;
rev = rev * 10 + rem;
num /= 10;
}
  
   if (orig == rev)
printf("%d is a Palindrome.", orig);
else
printf("%d is not a Palindrome.", orig);
return 0;
}

2. Topic defination : Program to check for palindrome number - a word, phrase, or sequence that reads the same backwards as forwards,

3. Flowchart:

Add a comment
Know the answer?
Add Answer to:
please help me , I don't know from where to start . need to write a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • need Help! I don't even know where to start. if you could please show every step...

    need Help! I don't even know where to start. if you could please show every step and maybe explain why you did it. thank you! 2. Provide reagents and intermediates. OEt Ph Ph Ph

  • need Help! I don't even know where to start. if you could please show every step...

    need Help! I don't even know where to start. if you could please show every step and maybe explain why you did it. thank you! C. Provide detailed mechanism for the product provided. Draw 4 other possible products at the bottom NaOH, H20 heat + other products

  • Please help! I don't even know where to start. I know to do the sum of...

    Please help! I don't even know where to start. I know to do the sum of the forces in both directions but I'm not sure how that translates with the angle! Problem 4 (7 points). The figure below shows the positions of two α particles(each alpha particle (a) has a charge +2e) and an electron. a) Draw a clear and neat free-body diagram for either sphere at equilibrium. (2 points) b) Determine the magnitude and direction of the resultant force...

  • I don't know where to start. Please help! Thanks in advance :) Question 4 0.75 pts...

    I don't know where to start. Please help! Thanks in advance :) Question 4 0.75 pts What is the hybridization on this carbon? O sp о sp? O sp3 spd O sp3d2

  • I'm not sure where to start since I don't know values for y' or y''. Could...

    I'm not sure where to start since I don't know values for y' or y''. Could someone help me out with number 1? Thanks in advance!!! 1. Solve the boundary value problem y" +2y +y 0 with boundary conditions y(0) 0 and y(1) 1 using the finite difference method. Write a matlab code that will take as input the number of points n and will output y(x). Plot the solution for 4, 10, 14 and 20 points. 2. If the...

  • Write the oxidation number for each atom Please help me solve these 6. I don't know...

    Write the oxidation number for each atom Please help me solve these 6. I don't know how to do them. 1. Write the oxidation number for each atom: a. CrO42- b. HC104 d. Sg c. NF3 e. P2O5 g. CHC13

  • Please I need help with MATLAB .. PLease help me . Thankyou Write Matlab code to...

    Please I need help with MATLAB .. PLease help me . Thankyou Write Matlab code to plot a 2D sinc function over a 2D cartesian grid where x ranges from 100 to 355 and y ranges from 0 to 255 and the sinc is centered at somewhere not midway in the grid. First plot the grid, and then plot the function on the grid (both as grayscale and as a surface plot). Comment the code well, generate the figures and...

  • need Algorithm and java code, please don't post only one!! Define a class called Counter. An...

    need Algorithm and java code, please don't post only one!! Define a class called Counter. An object of this class is used to count things so it records a count that is a non-negative whole number. Include methods to set the counter to 0, to increase the counter by 1, and to decrease the counter by 1. Be sure that no method allows the value of the counter to become negative. Also include an accessor method that returns the current...

  • Desperately need help with this one thank you and I'll rate you up after thanks : ) Please let me know if any clarif...

    Desperately need help with this one thank you and I'll rate you up after thanks : ) Please let me know if any clarification or additional information is needed. Compliance with the outlined project requirements is crucial. In this question you should program something of your choice but if possible our professor said to make a program that store account number and balance thank you Project: Programming a project of your choice in C++. Step 1- Program must implement a...

  • I was wondering if you could help me with my statistics final project. I just don't know how to start a hypothesis!...

    I was wondering if you could help me with my statistics final project. I just don't know how to start a hypothesis! At least please help me form a topic and hypothesis and just briefly guide me how to do. Thank you every much!! STAT 200 Final Project Objective: The final project gives the student an opportunity to use their statistical knowledge to research and compile a report based on an application of personal interest. Resources: You may find information...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT