πŸš—πŸοΈ Welcome to Motoshare!

Turning Idle Vehicles into Shared Rides & New Earnings.
Why let your bike or car sit idle when it can earn for you and move someone else forward?

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Partners earn. Renters ride. Everyone wins.

Start Your Journey with Motoshare

Basics of C Programming

Structure of a C Program

Definition:

A C program follows a structured format, which includes essential components like preprocessor directives, the main function, and statements.

#include <stdio.h>  // Preprocessor directive

// Main function: Entry point of every C program
int main() {
    printf("Hello, World!");  // Output statement
    return 0;  // Indicates successful execution
}

Structure Breakdown:

  • #include <stdio.h>: Includes the standard input-output library.
  • int main(): The main function where execution begins.
  • printf("Hello, World!");: Prints output to the screen.
  • return 0;: Indicates successful execution.

Data Types in C

Definition:

Data types in C define the type of data a variable can store. They determine the memory size and the operations that can be performed on the variable.

SizeExample
int4 bytesint num = 10;
float4 bytesfloat pi = 3.14;
double8 bytesdouble bigNum = 5.6789;
char1 bytechar grade = 'A';
void0 bytesUsed for functions with no return value

Variables and Constants

Variables

A variable is a named memory location that stores data and can be modified during program execution.

Syntax:

data_type variable_name = value;

Example:

int age = 25;
float height = 5.9;
char grade = 'A';

Constants

Constants are values that do not change during program execution.

Using const Keyword:

const float PI = 3.14159;

Using #define Macro:

#define PI 3.14159

Operators in C

Operators are symbols that perform operations on variables and values. They are classified into different types based on their functionality.

Arithmetic Operators

OperatorDescriptionExample (a = 10, b = 5)
+Additiona + b β†’ 15
-Subtractiona - b β†’ 5
*Multiplicationa * b β†’ 50
/Divisiona / b β†’ 2
%Modulus (remainder)a % b β†’ 0

Relational Operators

OperatorDescriptionExample (a = 10, b = 5)
==Equal toa == b β†’ false
!=Not equal toa != b β†’ true
>Greater thana > b β†’ true
<Less thana < b β†’ false
>=Greater than or equal toa >= b β†’ true
<=Less than or equal toa <= b β†’ false

Logical Operators

OperatorDescriptionExample (x = 1, y = 0)
&&Logical AND(x && y) β†’ false
``Logical OR`(xy)β†’true`
!Logical NOT!x β†’ false

Bitwise Operators

OperatorDescriptionExample (a = 5, b = 3)
&ANDa & b β†’ 1
``OR`ab→7`
^XORa ^ b β†’ 6
~Complement~a β†’ -6
<<Left Shifta << 1 β†’ 10
>>Right Shifta >> 1 β†’ 2

5. Input and Output in C

Definition:

Input and output functions allow the program to interact with the user by receiving input and displaying output.

Output Functions

FunctionDescriptionExample
printf()Prints formatted outputprintf("Age: %d", age);
puts()Prints a string followed by a newlineputs("Hello World!");

Example:

#include <stdio.h>
int main() {
    printf("Hello, World!\n");
    puts("Welcome to C Programming.");
    return 0;
}

Input Functions

FunctionDescriptionExample
scanf()Reads formatted inputscanf("%d", &num);
gets()Reads a string (deprecated)gets(name);

Example (Using scanf()):

#include <stdio.h>
int main() {
    int age;
    printf("Enter your age: ");
    scanf("%d", &age);
    printf("You are %d years old.", age);
    return 0;
}
#include <stdio.h>
int main() {
    char name[30];
    printf("Enter your name: ");
    fgets(name, sizeof(name), stdin);  // Reads input safely
    printf("Hello, %s!", name);
    return 0;
}

Related Posts

Master Jenkins in Pune: Expert-Led DevOps Training for Your Career Growth

In the pulsating heart of India’s IT revolution, Pune stands as a beacon of innovation and technological prowess. For professionals and organizations aiming to streamline software delivery,…

Mastering Jenkins in Mumbai: A Comprehensive Guide to the Premier Training Program

In today’s fast-paced digital landscape, the ability to automate, integrate, and streamline software delivery is not just an advantageβ€”it’s a necessity. For professionals in Mumbai looking to…

Master Jenkins in Kolkata: Your Guide to Expert-Led DevOps Training

In the bustling technological landscape of Kolkata, where tradition meets innovation, the demand for skilled DevOps professionals is surging. At the heart of modern DevOps practices lies…

Master Jenkins CI/CD: Premier Training in Hyderabad for DevOps Success

In today’s hyper-competitive software development landscape, speed, reliability, and automation are not just advantagesβ€”they are necessities. Continuous Integration and Continuous Delivery (CI/CD) has become the backbone of…

Master Jenkins in Chennai: Expert-Led Training & Certification Guide

In today’s fast-paced software development landscape, the ability to automate and streamline the CI/CD pipeline isn’t just a luxuryβ€”it’s a necessity. For IT professionals in Chennai looking…

Master Jenkins: Expert-Led Training in Bangalore

In today’s fast-paced digital economy, the ability to deliver software rapidly, reliably, and efficiently is no longer a luxuryβ€”it’s a business imperative. At the heart of this…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x