Smart Grids and Energy Storage Systems: Powering the Future of Energy In today’s rapidly evolving energy landscape, traditional power grids are being replaced by more intelligent, efficient, and sustainable systems. Smart grids combined with energy storage systems (ESS) are transforming how electricity is generated, distributed, and consumed — paving the way for a cleaner, more reliable energy future. What is a Smart Grid? A smart grid is an advanced electricity network that uses digital communication, sensors, and automation to monitor and manage the flow of electricity. Unlike traditional grids, smart grids can: Detect and respond to changes in electricity demand in real-time. Integrate renewable energy like solar, wind, and hydro. Improve efficiency by reducing energy losses. Key technologies in smart grids include: Smart meters for accurate energy usage tracking. Automated control systems to manage power distribution. Data analytics for predictive maintenance and demand forecasting...
C program to find sum of digits of a number using recursion.
int sumOfDigits(int num);
int main() {
int num, sum;
printf("Enter a number: ");
scanf("%d", &num);
sum = sumOfDigits(num);
printf("The sum of digits of %d is %d.\n", num, sum);
return 0;
}
int sumOfDigits(int num) {
if (num == 0) {
return 0;
} else {
return (num % 10) + sumOfDigits(num / 10);
}
}
Explanation :
The program starts by including the standard input-output library stdio.h.
The program defines a function sumOfDigits that takes an integer argument num and returns the sum of its digits. The function is defined using recursion.
Inside the sumOfDigits function, there is an if statement that checks if the number num is equal to 0. If it is, the function returns 0 as the sum of digits.
If num is not equal to 0, the function calculates the sum of the last digit of num (obtained using the modulus operator %) and the sum of digits of the remaining digits (obtained using integer division /), and returns this sum.
The program defines the main function that takes no arguments and returns an integer. Inside the main function, the program declares three integer variables num, sum, and i.
The program prompts the user to enter a number using printf and reads the input using scanf.
The program calls the sumOfDigits function with the input number num and stores the result in the variable sum.
Finally, the program prints the result using printf.
The return 0 statement at the end of the main function terminates the program and returns 0 to the operating system.
Sample output :
Enter a number: 1234
The sum of digits of 1234 is 10.
Here, we have entered the number 1234 as input, and the program has calculated the sum of its digits (which is 1+2+3+4=10) using recursion and printed the result.