C programming language, c++ language, coaching class in Ahmedabad, coahcing for c, computer engineering coaching in Ahmedabad, CSS coaching in Ahmedabad, Engineering Courses, HTML coaching in Ahmedabad, Java Course, learn Programming Languages at TCCI, online c++ coaching, online computer coaching, PHP coaching, programming language, Python, Web Design course In Ahmedabad

Learn CSS at TCCI- tccicomputercoaching.com

CSS stands for Cascading Style Sheets. Along with HTML, CSS is fundamental to web design. … CSS is a language used to detail the presentation of a web page’s mark up language (most commonly HTML or XHTML) – such as colors, fonts, and layout.

Learn-CSS_tcci-simple

CSS are an important way to control how your Web pages look. It controls colors, typography, and the size and placement of elements and images. But it can be very difficult to learn CSS, and some people would rather not learn it.

CSS Conserves user bandwidth, Speeds up page rendering, Reduces design and development time , Reduces updating and maintenance time . Design-wise it is easier, clearer, flexible, and more resilient if these “concerns” are kept separate from one another.

Connect with TCCI to learn very interesting Course CSS in Bopal and Satellite in Ahmedabad. Any person can learn this course in very short time.

For more information about CSS, Web Design Course, TCCI.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

 

.Net, Advance Java coaching, All Engineering Branch, Basic computer course, basic knowledge of networking, C programming language, c++ language, Civil Engineering Coaching at TCCI, computer class in bopal-ahmedabad, computer class in satellite-ahmedabad, computer engineering coaching in Ahmedabad, Computer programming at TCCI, Degree-Diploma-Engineering at TCCI, EC engineering coaching in Ahmedabad, Education, Engineering Courses, HTML, IT engineering coaching in Ahmedabad, Java Course, learn C Online, Maths coaching to engineering student, online c++ coaching, online computer coaching, PHP coaching, Python language, TCCI Coaching Institute

Coaching for Diploma-Degree Engineering Course at TCCI

A career in engineering is interesting and fun. It involves a lifetime of continuous learning to adapt to changes in society and the natural world. It’s important to find a career that you can enjoy as well as it provides Variety of Career opportunities.

Diploma-Degree-Engineering-Course

Engineering is such a vast field where you have so many options to choose as your career as per your interest. Engineering Study have lots of challenging work as well as financial security because if you can grasp knowledge very well then you can get the best job.

TCCI Coaching Institute provides coaching to the Diploma-Degree Engineering Students including University of Nirma, Indus, Gujarat Technological, GU,DDIT, PDPU, Changa etc. If you want to develop your career in Engineering Branch and want to go in deep to study then you can connect with TCCI Coaching Institute in Ahmedabad. There are coaching available for so many branches in Engineering like Computer, Information Technology, Electronic & Communication, Electrical, EEE, Mechanical, Civil etc.

TCCI is located in Bopal and Satellite in Ahmedabad. We have High Qualified and 12 years Experienced Faculty. We have trained more than 150 students till now.

Our proficiency lies in identifying your talent, understanding your aptitude, analysing your needs and nurturing you to reach the zenith of technical excellence.

Call us @ 9825618292

Visit @ http://tccicomputercoaching.com/

 

array in C Language, C programming language, coaching class in Ahmedabad, coahcing for c, computer coaching in India, computer coaching in satellite-ahmedabad, online coaching for array in c language, TCCI computer coaching

Array in C Programming Language – tccicomputercoaching.com

What is Array?

Array is collection of more than one element of same type at a same memory location.

Array-in-C-Prog_simple

Declaration Syntax:

Data Type arrayname[size];

Here , size represent number elements stored in Array. This size is maximum
so, user can enter equal or less elements but nor more than elements.

All Elements store in sequence in memory. An each element contain position
which always start from zero.

rn[0]

rn[1]

rn[2]

rn[3]

0 1 2 3

For Example , if we want to store 4 student rollno at a same location then
array has been declared like this:

int rn[4];

Advantage:

Variable cannot store more than one data at a time. Array removes this
limit of variable.

Disadvantage:

Array can store an elements of same type only.

To enter data in given an array:

for(i=0;i<n;i++)

{

Scanf (“%d”,a[i]);

}

To display data in given an array:

For (i=0;i<n;i++)

{

Printf (“%d”,a[i]);

}

We can find maximum element , minimum element , sort the array , search an element from an Array.

To learn coding in C  Language at TCCI

Call @ 9825618292

Visit @ http://tccicomputercoaching.com/

 

c coaching in bopal, C programming language, coaching class for C, coaching class in Ahmedabad, Computer programming at TCCI, learn C Online, TCCI computer coaching

Switch in C Language – tccicomputercoaching.com

What is Switch?

Switch is used to select any one from multiple choice. The switch statement allows us to execute one code block among many alternatives.

Switch-in-C-Lang_simple

A switch statement tests the value of a choice variable and compares it with multiple cases. Once the case match is found, a block of statements associated with that particular case is executed. Each case in a block of a switch has a different name/number which is referred to as an identifier.

Syntax:

switch(variable)

{

case lable1:

statement:

break;

case lable2:

statement:

break;

case lable3:

statement:

break;

default:

statement:

break;

}

Example:

void main()

{

int ch;

clrscr();

// printf (“enter ypour choice\n”);

Printf (“1 paneer makhni \n”);

printf (“2 paneeer bhurji \n”);

printf (“3 paneer mutter”);

printf (“\nenter your choice”);

scanf (“%d”, &ch);

switch ( ch )

{

case 1:

printf (“Your paneer makhni is ready\n”);

break;

case 2:

printf (“Your paneer bhurji is ready \n”);

break;

case 3:

printf(“Your paneer mutter is ready\n”);

break;

default:

printf(“no choice”);

break;

}

getch();

}

OP:

enter your choice:

2

Your paneer bhurji is ready

To learn More about C Programming Langauge at TCCI.

Call @ 9825618292

Visit @ http://tccicomputercoaching.com/

 

 

C programming language, coahcing for c, computer class in ahmedabad, computer class in bopal-ahmedabad, TCCI computer coaching

Variable in C Language – tccicomputercoaching.com

What is variable?

Variable is a memory location where we can store the data.

Variable-in-C-Language_simple

Why need variable?

In programming we can’t use data directly. We have to store the data first(on which we are going to process) in memory . This memory is allocated as per Data Type.

Features of Variable:

The variable can store single data at a time. We can Update the data stored in variable.

Rules for Variable Name:

First letter should be start with alphabet.

No any symbol like * , dash, Hash, space should be used except underscore.

i.e roll-no , employee name , jan#sal etc.. invalid name.

valid name of variable:

rollno, a, emp1, salary etc.

Syntax of Variable:

Data Type Variable name;

i.e int a;

float b;

char x;

To learn more about C Programming Langauge at TCCI

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

 

 

c coaching in bopal, C programming language, coaching class for C, computer class in satellite-ahmedabad, computer coaching in Ahmedabad, Computer Engineering Coaching, TCCI computer coaching

Data Type in C Language-tccicomputercoaching.com

What is Data Type and Why Data Type Need?

In programming there are different types of data used for example 987,876.34, xyz, Hello World, %, # etc.

DataType-in-C_simple

As a human being we can differentiate that these all data are different but machine can’t differentiate data, so, to differentiate data they have been categorized in different categories which are called data type.

ANSI C provides three types of data types:

1. Primary (Built-in) DataTypes:

void, int, char, double and float.

2.Derived DataTypes:

Array , References, and Pointers.

3.User Defined DataTypes:

Structure , Union, and Enumeration.

1. Following are Primary Data Types in C:

  • void
    – means nothing. void is always used with main function. That mean void
    function does not return any value.
  • int
    – 0-9 digit (combination) i.e. 99999 , 10 , 0 , 23456
  • float
    – Real Number i.e 78.91
  • char
    -There are 4 sub categories:

o 0-9

o a-z

o A-Z

o other symbols

  • Note: character contains only single value
  • string
    – Is collection of character but C language does not allow to declare
    string as a data type.

Data Type is always used in variable declaration in beginning in void main.

data type name;

For example,

int rollno;

float salary;

char code;

2. Following are Derived Data Types in C:


Derived Data type is based on Primary data type.

Arrays – Arrays are sequences of data items having homogeneous values.

References – Function pointers allow referencing functions with a particular signature.

Pointers – These are powerful C features which are used to access the memory address

3. Following are User Defined Data Types in C:

C allows the feature called type definition which allows
programmers to define their identifier that would represent an existing
data type. There are three such types:

  • Structure

It is a package of variables of different types under a single name. This is done to handle data efficiently. “struct” keyword is used to define a structure.

  • Union

These allow storing various data types in the same memory location. Programmers can define a union with different members, but only a single member can contain a value at a given time.

  • Enum

Enumeration is a special data type that consists of integral constants, and each of them is assigned with a specific name. “enum” keyword is used to define the enumerated data type.

To learn more about C Language at TCCI

Visit @ http://tccicomputercoaching.com/

Call @ 9825618292

 

.Net, Advance Java coaching, All Engineering Branch, angular JS, Basic computer course, basic knowledge of networking, C programming language, c++ language, computer class in satellite-ahmedabad, corporate traning by TTCI, Degree-Diploma-Engineering at TCCI, Education, Engineering Courses, Java Course, Java Course In Satellite - Bopal Ahmedabad, online computer coaching, PGDCA course coaching, PHP coaching, programming language, Python, School Computer Course Coaching, TCCI computer coaching, Typing

Welcome to TCCI Computer Coaching Institute !! tccicomputercoaching.com

TCCI is located in developing area of city – Bopal and heart of City Satellite area in Ahmedabad.

Welcome-to-TCCI_simple

We are committed to your career growth. If you want to learn a new skill, or get certification in a new Technology, Visit our Institute at Bopal or Satellite in Ahmedabad.

In the event that you remain at remote area then additionally no issue , you can visit our site http://tccicomputercoaching.com/ .We provide offline coaching and online coaching both to any person.

There are various Courses:

Basic Computer Course, Programming Course, Web Designing Course, Project Training Course, Web Development Course,Typing, SEO, Coaching for All Engineering Branch, Maths Coaching, School Computer Course Coaching etc.

For more information about TCCI Coaching Institute.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/training/

 

.Net, Advance Java coaching, Basic computer course, basic knowledge of networking, C programming language, c++ language, computer class in satellite-ahmedabad, computer coaching in Ahmedabad, computer engineering coaching in Ahmedabad, Degree-Diploma-Engineering at TCCI, Education, Engineering Courses, Java Course, Java Course In Satellite - Bopal Ahmedabad, Java Language in Bopal and Satellite, online computer coaching, PGDCA course coaching, PHP coaching, programming language, Python language, school computer coaching, School Computer Course, TCCI computer coaching

Loop in C Language – tccicomputercoaching.com

What is Loop in Programming?

To write once, but execute more than one time is called Loop in Programming. This will save time of developer to write n time.

Loop-C-Language_simple

3 type of Loop:

  • for
  • while
  • do-while

We see one by one in detail.

There are 3 sections in each loop:

there is loop variable i/j

1. initialization i=1 or i=10

2. condn check i<=10 or i>=1

3. update (++ or –) i=i+1 or i++ i–

e.x. We want to print 10 time “hello world”. Then what is the syntax in coding?

Let us see.

1. for loop

for (i=1;i<=10;i++)

{

Printf (“hello world\n”);

}

Here, all 3 sections are in same statement. First initialization executed always. Then control goes to the condition checking. If condition is true then only control entered into the loop and statement inside the loop will be executed. Then control goes to the updating, again condition checking , and same process will continue until condition will be false.

2. While Loop

i=1;

while(i<=10)

{
printf (“hello wolrd\n”);

i++;

}

Here , initialization is outside of Loop. Then control goes to the condition checking. If condition is true then only control entered into the loop and statement inside the loop will be executed. Then control goes to the updating, again condition checking , and same process will continue until condition will be false.

3. do -while Loop

i=1;

do

{

printf (“hello wolrd\n”);

i++;

} while (i>=10);

Here, also initialization is outside of Loop. But in this Loop condition is last , so control direct enter into the loop and one time statement inside the loop will be executed. Then updating and last control rich to the condition checking. If condition is true then control again entered into the loop , and process will be continue until condition will be false.

Thus , Do – While loop is different than previous two loop. Here condition is last , so , if condition is false yet output will execute one time. When in previous two loop condition is false then output will not execute once.

Second difference is : in do-while there is semi colon at last.

TCCI is located in developing area of city – Bopal and heart of City Satellite area in Ahmedabad.

Our course include all Computer course, Web Designing Course , Project Training, Basic Computer Course, Programming Course etc.

We have team of qualified and experienced Faculties who teach all important
subjects of Civil Engineering, Mechanical Engineering, Computer-IT Engineering, EC
Engineering, Electrical Engineering, EEE Engineering , Maths Course
etc

We teach computer subjects to school students from class 1 to 12th (any Board).

Main advantage of TCCI is “Lecture as per student flexible time”.

For more information about TCCI.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

 

C programming language, Uncategorized

Operators in C – tccicomputercoaching.com

What is operator?

Operator means simple symbol which is used between operands (variable) during
mathematical process.

Operators-in-C_simple

There are following categories:

1. arithmetic: + – * / %

i.e.

a=6

b=2

printf(“a+b =%d”, a+b);

printf(“a-b =%d”, a-b);

printf(“a/b =%d”, a/b);

printf(“a*b =%d”, a*b);

printf(“a%b =%d”, a%b);

op:

a+b =8

a-b =4

a/b =3

a*b =12

a%b =0

Modulor Operator – % is used in Coding like ro find Number is even or Odd.

if(a%2==0)

{

printf(“a is even”);

}

else

{

printf(“a is odd”);

}

2. relational operator : > >= < <= == !=

For example,

a=6

b=2;

if(a==b)

{

printf(“a and b are same”);

}

else

{

printf(“a and b are not same”);

}

3. logical operator : && || !

&& ||

—————————————————————————————————————–

c.1 c.2 Result c.1 c.2 Result

—————————————————————————————————————–

1. T T T T T T

2. F T F F T t

3. T F F T F t

4. F F F F F F

4. Assignment Operator: =

This operator assign value of right side variable to the left side
variable.

i.e int x=10,y=20 ;

printf(“%d”,x);

x=y;

printf(“%d”,x);

op:

10 20

5. Increment and decrement: ++ – –

Increment ++ and decrement — to change the value of an operand (constant or variable) by 1. Increment ++ increases the value by 1 whereas decrement — decreases the value by 1. These two operators are unary operators, meaning they only operate on a single operand.

i.e,

int x=6;

x++;

printf(“%d”,x);

x- -;

printf(“%d”,x);

op: 7 6

6. Conditional operator:

Syntax: exp1? exp2:exp3

I.E. int x=10,y=20 ,max;

max=x>y?x:y;

printf(“%d” ,max);

OP: 20

7. Shorthand Assignment Operator: += +* +/ +%

i.e

int x=6;

x+=5;

This statement expnad like x=x+5;

x= 6+5;

x=11;

8. Bitwise Operators
: & | > <

The Bitwise operators is used to perform bit-level operations on the operands. The operators are first converted to bit-level and then the calculation is performed on the operands. The mathematical operations such as addition, subtraction, multiplication etc. can be performed at bit-level for faster processing. For example, the bitwise AND
represented as & operator in takes two numbers as operands and does AND on every bit of two numbers. The result of AND is 1 only if both bits are 1.

i.e

Assume variable ‘A’ holds 60 and variable ‘B’ holds 13, then –

(A & B) = 12, i.e., 0000 1100

For more information about C programming at TCCI

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

 

.Net, Advance Java coaching, angular JS, Basic computer course, basic knowledge of networking, C Language, c++ language, computer class in satellite-ahmedabad, computer coaching in Ahmedabad, Degree-Diploma-Engineering at TCCI, Engineering Courses, Java Course, Java Course In Satellite - Bopal Ahmedabad, learn Programming Languages at TCCI, Online coaching for Java, online computer coaching, PHP coaching, programming language, Python, TCCI computer coaching

Control statements in C Programming Language – tccicomputercoaching.com

Some time we need to take decision depending on some condition. Result will be true or false. If condition fulfil then result is true otherwise false.

control-statements-C_simple

For Example, student is Pass or Fail is dependent on their Percentage. Suppose Criteria is 50 %. So, student getting Percentage above 50 % then he or she is Pass otherwise fail.

There are 3 types of control statements :

Let us see one by one.

1. if -else

if(condn)

{

st.1;

}

else

{

st.2;

}

if(total>150)

{

printf(“pass”);

}

else

{

printf(“fail”);

}

—————————————————————

example,

if(a%2==0)

{

printf(“a is even”);

}

else

{

printf(“a is odd”);

}

=================================================

2 .nested if-else

if(condn)

{

if(cond2)

{

st.1;

}

else

{

st.2;

}

}

else

{

if(cond3)

{

st.3;

}

else

{

st.4;

}

}

————————————————————————-

example:

if(a>b)

{

if(a>c)

{

“a”;

}

else

{

“c”;

}

}

else

{

if(b>c)

{

“b”;

}

else

{

“c”;

}

}

=================================

3. else-if ladder

if(c.1)

{

st.1;

}

else if(c.2)

{

st.2;

}

else if(c.3)

{

st.3;

}

else if(c.4)

{

st.4;

}

else

{

st.5;

}

————————————————————————————-

example.

if(p>=70)

{

“A”;

}

else if(p>=60)

{

“B”;

}

else if(p>==50)

{

“C”;

}

else if(p>==40)

{

“D”;

}

else

{

“fail”;

}

For more information about control statements in C Programming Language

Call us @ 9825618292

Visit us @  http://tccicomputercoaching.com/