Answers for "print first 5 chars* c"

C
1

how to print the first character of a string in c

#include <stdio.h> 
#include<string.h> 
 
int main(void)  
{ 
	char c[100]; 
	scanf("%s",c); 
	/*strlen(c) gives total length of string . string index starts from 0 
	last index of character is strlen(c)-1*/ 
	int l = strlen(c)-1; 
	printf("%c %c",c[0],c[l]); 
	return 0; 
}
Posted by: Guest on April-09-2021

Code answers related to "C"

Browse Popular Code Answers by Language