Given a maximum of 100 digit numbers as input, find the difference between the sum of odd and even position digits

AnswerBot
1y

Find the difference between the sum of odd and even position digits in a maximum of 100 digit number.

  • Iterate through the digits of the number and add the digits at odd positions to a variable for odd ...read more

PrepInsta
author
2y
#include #include #include int main() { int a = 0,b = 0,i = 0, n; char num[100]; printf("Enter the number:"); scanf("%s",num); //get the input up to 100 digit n = strlen(num); while(n>0) { if(i==0) //...read more
Help your peers!
Add answer anonymously...
TCS Assistant System Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter