🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to C Notes
Topic #91

C Input Validation


Input Validation

When users enter data into a C program, they might type something unexpected. Input validation makes sure the input is correct before the program continues.

Without validation, your program might crash or give the wrong result!

The examples below show simple ways to check if the user's input is valid in C.


Validate Number Range

Check if the number is within an allowed range (for example, 1 to 5):

Example

#include <stdio.h>

int main() {
  int number; // Variable to store the user's number

  do {
    printf("Choose a number between 1 and 5: ");
    scanf("%d", &number); // Read number input
    while (getchar() != '\n'); // Clear leftover characters from input buffer
  } while (number < 1 || number > 5); // Keep asking until number is between 1 and 5

  printf("You chose: %d\n", number); // Print the valid number
  return 0;
}

Validate Text Input

Check that a name is not empty. Use fgets() and check the first character:

Example

#include <stdio.h>
#include <string.h>

int main() {
  char name[100]; // Buffer to store the user's name

  do {
    printf("Enter your name: ");
    fgets(name, sizeof(name), stdin); // Read input as a string
    name[strcspn(name, "\n")] = 0; // Remove the newline character if present
  } while (strlen(name) == 0); // Repeat if the input is empty

  printf("Hello, %s\n", name); // Greet the user
  return 0;
}

Validate Integer Input

Make sure the user enters a number. If they enter something else (like a letter), ask again using fgets() and sscanf():

Example

#include <stdio.h>

int main() {
  int number;       // Variable to store the user's number
  char input[100];  // Buffer to hold user input as a string

  printf("Enter a number: ");

  // Keep reading input until the user enters a valid integer
  while (fgets(input, sizeof(input), stdin)) {
    // Try to read an integer from the input string
    if (sscanf(input, "%d", &number) == 1) {
      break; // Success: break out of the loop
    } else {
      printf("Invalid input. Try again: "); //
If not an integer, ask again
    }
  }

  // Print the valid number entered by
the user
  printf("You entered: %d\n", number);
  return 0;
}

Tip: You can read more about fgets() and sscanf() in our <stdio.h> library reference.

Want to go beyond the notes?

Join CodingNow 2.0's C course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

C Input Validation – FAQs

Quick answers about learning C Input Validation in C.

This free note from CodingNow 2.0 explains C Input Validation in C — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every C topic on CodingNow 2.0, including C Input Validation, is 100% free with no signup required.
With focused practice, most students grasp C Input Validation in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now