Powering the Future of Sustainable Transportation Introduction One of the biggest reasons behind Tesla's rapid growth is its network of Gigafactories. These massive manufacturing facilities are designed to produce electric vehicles (EVs), batteries, energy storage systems, and other clean-energy products at an unprecedented scale. By building Gigafactories around the world, Tesla has transformed the way vehicles and batteries are manufactured, helping accelerate the global transition to sustainable energy. What is a Gigafactory? A Gigafactory is a large-scale manufacturing facility built by Tesla, Inc. to produce batteries, electric vehicles, and energy products. The name "Gigafactory" comes from the word "gigawatt-hour," reflecting the enormous battery production capacity of these plants. Tesla's goal is to reduce manufacturing costs, increase production efficiency, and make electric vehicles more affordable for consumers worldwide. Major Tesla Gigafactorie...
C program to check if a number is binary or not
int isBinary(int num) {
while (num != 0) {
if (num % 10 > 1) {
return 0;
}
num /= 10;
}
return 1;
}
int main() {
int num;
printf("Enter a number: ");
scanf("%d", &num);
if (isBinary(num)) {
printf("%d is a binary number.\n", num);
} else {
printf("%d is not a binary number.\n", num);
}
return 0;
}
Explanation :
This program defines a function isBinary that takes an integer num as input and returns 1 if num is a binary number, and 0 otherwise. The function checks each digit of the number by dividing it by 10 and checking if the remainder is greater than 1. If any digit is greater than 1, the function returns 0, indicating that num is not a binary number. If all digits are less than or equal to 1, the function returns 1, indicating that num is a binary number.
In the main function, the program prompts the user to enter a number and then calls the isBinary function to check if the number is binary. Depending on the result, the program prints a message to the console indicating whether the number is binary or not.
Sample output:
Here's an example output of the program for the input of the number 10101010:
Enter a number: 10101010
10101010 is a binary number.
And here's an example output of the program for the input of the number 1234:
Enter a number: 1234
1234 is not a binary number.