Continue Statement in C

Continue statement skips some lines of code inside the loop and continues with the next iteration. 
When the continue statement is encounters in a loop, then program will skip the all the statements after the continue statement and the loop continues with the next iteration.
It is mainly used for a code which we want to skip.


  Syntax of Continue Statement in C :


C Program to Capitalize the Given String

Ex: Write a C program to capitalize a given string. How to write a C program to capitalize given string. C program to capitalize given string.


Input from user:

Enter the string: 
tHis IS cOdeForhuNger

Expected output:

String after capitalize: 
This Is Codeforhunger

C Program to Find Largest Element of Array

Ex: Write a C program to print largest element of array. How to write a C program to find largest element of array. C program to print largest element of array.


Input from user:


Enter the limit: 12


Enter elements: 

12 

34
-1
54
7
9
16
44
32
21
19

C Program to print Total number of Notes in given Amount

Ex: Write a C program to find total number of notes in given amount. How to write a C program to print total number of notes in given amount. C program to print total number of notes in given amount.


Input from user:


Enter the amount: 2528


Expected output:


500=5

100=0
50=0
20=1
10=0
5=1
2=1
1=1

C Program to Find Percentage of given Subjects Marks using Array

Ex: Write a C program to find percentage of given subjects marks using array. How to write a C program to print percentages of given marks. C program to find percentage of given subjects marks.


Input from user:


Enter limit of subjects: 5


Enter marks of subject[1]:71

Enter marks of subject[2]:65
Enter marks of subject[3]:61
Enter marks of subject[4]:81
Enter marks of subject[5]:77

Expected output:


Percentage= 71.0000

C Program to Print all Negative Elements in Array

Ex: Write a C program to print all negative elements in array. How to write a C program which print all negative elements in array. C program to print all negative elements in array.


Input from user:

Enter the limit: 5

Enter the numbers:
10
-3
12
-9
-2

Expected output:

Negative elements are:
-3
-9
-2

C Program to print Sum of All Array Elements

Ex: Write a C program to print sum of all array elements. How to write a C program which print sum of all array elements. C program to print sum of all array elements.


Input from user:

Enter how many elements you are going to enter: 5

Enter the elements:
10 
20 
30 
40
50

Expected output:

Sum of all array elements= 150





Array in C Definition, Syntax, Working, Advantages & Disadvantages

Definition: Array is collection of similar data types. That means using array we can store similar type of elements.


In short array is  a variable which can store multiple values. For example, if you want to store 100 and more intigers, then you need to create an array for it.



Syntax:

C Program for Swap Two Numbers using Functions

Ex: Write a C program for swap two numbers using function. How to write a C program for swap two numbers using function. C program for swap two numbers using function.

Input from user:


Enter two numbers: 10 20


Expected output:


Numbers before swap:

number1=10
number2=20

Numbers after swaping:

number1=20
number2=10

C Program to print Square of given Number using Function

Ex: Write a C program to print square of given number using function. How to write a C program to print square of given number using function. C program to print square of given number using function.

Input from user:

Enter the number: 4

Expected output:

Square of given number is= 16.0000





  Step by Step logic of the given program:



1. First declare function give it meaningful name square().

2. Inside the main() accept input (number) from user declare varible say no.

3. Call the square() inside the printf() directly (It will print returned value means square of given number).

4. In the body of square() use simple logic of square which is-
Square=no*no;

5. After that return square.




  C Program to print Square of given Number using Function:


#include<stdio.h>
float square(float);

int main()
{
float no;
printf("Enter the number: ");
scanf("%f",&no);

printf("Square of given number is= %f",square(no));
}
float square(float no)
{
float square=no*no;
return square;
}


Above program shows the following output:


C Program to print Square of given Number using Function