Starter Tutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C Programming » Programs » Arrays » C program to print all values in an array less than given number
Suryateja Pericherla Categories: Arrays. No Comments on C program to print all values in an array less than given number
Join Our Newsletter - Tips, Contests and Other Updates
Email
Name

In this article we will learn to implement a C program to print all values in an array less than given number. A C program is provided below to print all the values in an array which are less than the given key element.

 

The program is as follows:

#include <stdio.h>
#include <conio.h>

int main() 
{
	int n;
	int k;
	printf("Enter n: ");
	scanf("%d", &n);
	int a[20];
	printf("Enter array elements: ");
	for(int i = 0; i < n; i++)
		scanf("%d", &a[i]);
	printf("Enter k: ");
	scanf("%d", &k);
	printf("Array elements less than %d are: \n", k);
	for(int i = 0; i < n; i++)
	{
		if(a[i] < k)
			printf("%d ", a[i]);
	}
	getch();
    return 0;
}

 

Input and output for the above program is as follows:

Enter n: 6
Enter array elements: 1 3 5 2 4 6
Enter k: 4
Array elements less than 4 are:
1 3 2

 

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory