Showing posts with label C. Show all posts
Showing posts with label C. Show all posts

Friday, May 6, 2016

C programming Language Code Examples-break & continue (14)

Smiley face

Code:

Smiley face

Output:

Smiley face

Note

break:if i =2 it go to out of loop

Code:

Smiley face

Output:

Smiley face

Note

continue:if i =2 it go to next i value

Tuesday, April 26, 2016

C programming Language Code Examples-loops3(13)

Smiley face

Code:for Loop

Smiley face Smiley face

Output:

Smiley face Smiley face

Code:while Loop

Smiley face Smiley face

Output:

Smiley face Smiley face

Code:dowhile Loop

Smiley face Smiley face

Output:

Smiley face Smiley face

Note

dowhile loop first print then check the condition at 1st time

Monday, April 25, 2016

Friday, April 22, 2016

Tuesday, April 19, 2016

C programming Language Code Examples-Pre & Post Condition(10)

Smiley face

Code:Post Condition(x++)

Smiley face

Output:

Smiley face

Code:Pre Condition(++x)

Smiley face

Output:

Smiley face

Note

different between post & pre condition is
if you give post condition value of x change at next line but
if you give pre condition value of x change at same line

Friday, April 15, 2016

Wednesday, April 13, 2016

C programming Language Code Examples-Exerxies(7)

Smiley face

[Q]:

write a programme that ask the user to enter 2 float type variable and which type Assignment operation want to do and print answer?

Code:

Smiley face

Output:

Smiley face

Tuesday, April 12, 2016

C programming Language Code Examples-ControlStatement-IfElse(6)

Smiley face

Code:

Smiley face

Output:

Smiley face
Smiley face

note:

this is wrong to fix it see next code

Code:

Smiley face

Output:

Smiley face
Smiley face

note:

'{}' -curly braces used with 'if' & 'else' statement

but if you want to do only 1 line no need

other wise should use the braces.


Logical Operations

&& - AND

|| - OR

! - NOT

Code:

Smiley face

Output:

Smiley face

note:

this is a wrong one so you can use 'else if'

to fix it

Code:

Smiley face

Output:

Smiley face
Wel Come !!! computer express