Asked inTCS,Digital

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

AnswerBot
1y

The program calculates the difference between the sum of odd and even position digits in a given number.

  • Iterate through each digit of the number

  • Keep track of the sum of digits at odd positions and eve...read more

PrepInsta
author
3y
#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 Digital 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