Skip to main content

Noise Pollution Control in Industries: Strategies and Solutions

Noise pollution is a significant environmental issue, particularly in industrial settings. The constant hum of machinery, the clanging of metal, and the roar of engines contribute to a cacophony that can have serious health implications for workers and nearby residents. Addressing noise pollution in industries is not only a matter of regulatory compliance but also a crucial step in ensuring the well-being of employees and the community. Understanding Noise Pollution in Industries Industrial noise pollution stems from various sources such as heavy machinery, generators, compressors, and transportation vehicles. Prolonged exposure to high levels of noise can lead to hearing loss, stress, sleep disturbances, and cardiovascular problems. Beyond health impacts, noise pollution can also reduce productivity, increase error rates, and contribute to workplace accidents. Regulatory Framework Many countries have established regulations and standards to limit industrial noise. Organizations like t

Important C programs


1) Hello World Program:

#include<stdio.h>
int main()
{
    printf("Hello, World!");
    return 0;
}

2) Program to Add Two Numbers:

#include<stdio.h>
int main()
{
    int num1, num2, sum;
    printf("Enter two numbers: ");
    scanf("%d %d", &num1, &num2);
    sum = num1 + num2;
    printf("Sum = %d", sum);
    return 0;
}

3) Program to Find Factorial of a Number:

#include<stdio.h>
int main()
{
    int num, i, fact=1;
    printf("Enter a number: ");
    scanf("%d", &num);
    for(i=1; i<=num; i++)
    {
        fact *= i;
    }
    printf("Factorial of %d = %d", num, fact);
    return 0;
}

4) Program to Check Whether a Number is Prime or Not:

#include<stdio.h>
int main()
{
    int num, i, flag=0;
    printf("Enter a number: ");
    scanf("%d", &num);
    for(i=2; i<=num/2; i++)
    {
        if(num%i == 0)
        {
            flag = 1;
            break;
        }
    }
    if(flag == 0)
        printf("%d is a prime number", num);
    else
        printf("%d is not a prime number", num);
    return 0;
}

5) Program to Find the Largest Number Among Three Numbers:

#include<stdio.h>
int main()
{
    int num1, num2, num3;
    printf("Enter three numbers: ");
    scanf("%d %d %d", &num1, &num2, &num3);
    if(num1 > num2 && num1 > num3)
        printf("%d is the largest number", num1);
    else if(num2 > num1 && num2 > num3)
        printf("%d is the largest number", num2);
    else
        printf("%d is the largest number", num3);
    return 0;
}

6) Program to Find the Factorial of a Number Using Recursion:

#include<stdio.h>
int factorial(int num);
int main()
{
    int num;
    printf("Enter a number: ");
    scanf("%d", &num);
    printf("Factorial of %d = %d", num, factorial(num));
    return 0;
}
int factorial(int num)
{
    if(num == 0)
        return 1;
    else
        return num * factorial(num-1);
}

7) Program to Print Fibonacci Series:

#include<stdio.h>
int main()
{
    int num, i, t1=0, t2=1, nextTerm;
    printf("Enter the number of terms: ");
    scanf("%d", &num);
    printf("Fibonacci Series: ");
    for(i=1; i<=num; i++)
    {
        printf("%d, ", t1);
        nextTerm = t1 + t2;
        t1 = t2;
        t2 = nextTerm;
    }
    return 0;
}

8) Program to Convert Celsius to Fahrenheit

#include <stdio.h>
int main() {
  float celsius, fahrenheit;
  printf("Enter temperature in Celsius: ");
  scanf("%f", &celsius);
  fahrenheit = (celsius * 1.8) + 32;
  printf("%.2f Celsius = %.2f Fahrenheit", celsius, fahrenheit);
  return 0;
}


9) Program to Check Whether a Number is Armstrong or Not:

#include<stdio.h>
#include<math.h>
int main()
{
    int num, originalNum, remainder, n=0;
    float result=0.0;
    printf("Enter an integer: ");
    scanf("%d", &num);
    originalNum = num;
    while(originalNum != 0)
    {
        originalNum /= 10;
        ++n;
    }
    originalNum = num;
    while(originalNum != 0)
    {
        remainder = originalNum % 10;
        result += pow(remainder, n);
        originalNum /= 10;
    }
    if((int)result == num)
        printf("%d is an Armstrong number.", num);
    else
        printf("%d is not an Armstrong number.", num);
    return 0;
}

10) Program to Find the Reverse of a Number:
#include<stdio.h>
int main()
{
    int num, reverse=0, remainder;
    printf("Enter an integer: ");
    scanf("%d", &num);
    while(num != 0)
    {
        remainder = num % 10;
        reverse = reverse * 10 + remainder;
        num /= 10;
    }
    printf("Reverse of the number = %d", reverse);
    return 0;
}

Popular posts from this blog

FIRM

          A firm is an organisation which converts inputs into outputs and it sells. Input includes the factors of production (FOP). Such as land, labour, capital and organisation. The output of the firm consists of goods and services they produce.           The firm's are also classified into categories like private sector firms, public sector firms, joint sector firms and not for profit firms. Group of firms include Universities, public libraries, hospitals, museums, churches, voluntary organisations, labour unions, professional societies etc. Firm's Objectives:            The objectives of the firm includes the following 1. Profit Maximization:           The traditional theory of firms objective is to maximize the amount of shortrun profits. The public and business community define profit as an accounting concept, it is the difference between total receipts and total profit. 2. Firm's value Maximization:           Firm's are expected to operate for a long period, the

Introduction to C Programs

INTRODUCTION The programming language ‘C’ was developed by Dennis Ritchie in the early 1970s at Bell Laboratories. Although C was first developed for writing system software, today it has become such a famous language that a various of software programs are written using this language. The main advantage of using C for programming is that it can be easily used on different types of computers. Many other programming languages such as C++ and Java are also based on C which means that you will be able to learn them easily in the future. Today, C is mostly used with the UNIX operating system. Structure of a C program A C program contains one or more functions, where a function is defined as a group of statements that perform a well-defined task.The program defines the structure of a C program. The statements in a function are written in a logical series to perform a particular task. The most important function is the main() function and is a part of every C program. Rather, the execution o

Human Factors in Designing User-Centric Engineering Solutions

Human factors play a pivotal role in the design and development of user-centric engineering solutions. The integration of human-centered design principles ensures that technology not only meets functional requirements but also aligns seamlessly with users' needs, abilities, and preferences. This approach recognizes the diversity among users and aims to create products and systems that are intuitive, efficient, and enjoyable to use. In this exploration, we will delve into the key aspects of human factors in designing user-centric engineering solutions, examining the importance of user research, usability, accessibility, and the overall user experience. User Research: Unveiling User Needs and Behaviors At the core of human-centered design lies comprehensive user research. Understanding the target audience is fundamental to creating solutions that resonate with users. This involves studying user needs, behaviors, and preferences through various methodologies such as surveys, interview