Example 1: getting string input in c # include <stdio.h> # include <conio.h> void main ( ) { chat sam [ 10 ] ; clrscr ( ) ; printf ( "ENTER STRING NAME :" ) ; gets ( s ) ; printf ( "STRING :%s" , s ) ; getch ( ) ; } Example 2: Syntax To Take Input In C Integer : Input : scanf ( "%d" , & intVariable ) ; Output : printf ( "%d" , intVariable ) ; Float : Input : scanf ( "%f" , & floatVariable ) ; Output : printf ( "%f" , floatVariable ) ; Character : Input : scanf ( "%c" , & charVariable ) ; Output : printf ( "%c" , charVariable ) ; Example 3: input output string in c # include <stdio.h> # include <string.h> # include <math.h> # include <stdlib.h> int main ( ) { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ char ch ; char s [ 100 ] ; char p [ 100 ] ; scanf ( ...