C gets() and puts() functions

C gets() and puts() functions


Syntax for gets() and puts()

gets(char_array_variable);

puts(char_array_variable/string);

Library for gets() and puts()

#include <stdio.h>

Simple Example Program For gets() and puts()

/*  Example Program For gets() and puts() In C Programming Language
    little drops @ thiyagaraaj.com
    Coded By:THIYAGARAAJ MP             */
// Header Files

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

//Main Function
int main()
{
	char data[100];
	printf("Enter a String for gets() :");	
	
	//get string input using gets(..) function	
	gets(data);

	printf("Entered Data Is : will be with puts() :");
	//print string using puts(..) function
	puts(data);

    // Wait For Output Screen
    getch();

    //Main Function return Statement
    return 0;
}

 

Sample Output:

Enter a String:Programming

Entered Data Is :Programming

 

 

Data Input and Output Programs In C

  1. Data Output printf and putchar Example Program In C
  2. Data Input and Output gets and puts Example Program In C
    [ Reading ]
  3. Printf And Scanf Example Program In C Programming

 

Read More Articles

  1. Use of getch(),getche() and getchar() in C
  2. Switch Case Statement Example Program In C Programming Language
  3. C Character Set
  4. Convert a Floating-point value to an Integer in C
  5. Data Input and Output gets and puts Example Program In C
    [ Reading ]
  6. Special Operators In C
  7. Pointer Representation and Pointer Example Programs
  8. C Data Input and Data Output
  9. Simple While Loop Example Program In C Programming Language
  10. Data Output printf and putchar Example Program In C
  11. C Introduction
  12. C Operators
  13. Storage Classes In C
  14. C Pointers
  15. C Identifiers
  16. File Management
  17. Loop Control Statements
  18. Hello World - Simple C Program
  19. C Array
  20. Single Character Output Function : putchar()
  21. C Reserve Words
  22. C Specific Properties and Implementation
  23. If else Statement Example Program In C Programming Language
  24. If Statement Example Program In C Programming Language
  25. Confusing Array in C ( Array Representation and Initialization )

Queries

 Request for new program

Contact us

support@littledrops.net

Android Apps

Learn Python

Learn Spring

PostgreSQL

Perl

Android Apps

Learn Java

Learn Ubuntu

Unix Guide

Learn C++

© 2007-2020 All Rights are reserved. | WWW.LITTLEDROPS.NET and WWW.THIYAGARAAJ.COM

 

AddThis

Free C Programming - Android App

Download Now