Quantum Computing – The Next Tech Revolution Technology has evolved rapidly over the last few decades—from bulky mainframe computers to powerful smartphones in our pockets. Yet, despite these advances, traditional computers are approaching their physical limits. This is where quantum computing enters the scene, promising to revolutionize the way we process information and solve complex problems. What Is Quantum Computing? Quantum computing is a new paradigm of computing that uses the principles of quantum mechanics, a branch of physics that explains how matter and energy behave at the smallest scales. Unlike classical computers, which use bits that represent either 0 or 1, quantum computers use qubits. Qubits can exist in multiple states simultaneously, thanks to a property called superposition. Additionally, qubits can be interconnected through entanglement, allowing them to share information instantaneously. These unique properties give quantum computers immense computational power....
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.