.Begin each program with a comment section whiclh contains the following: //Prog
ID: 3744925 • Letter: #
Question
.Begin each program with a comment section whiclh contains the following: //Program Name; (i.., "Assignment 3") /Author's Name //Class: ENGR 19700 //Due Date: (i.e., Wednesday, September 12, 2018) //A description of what the program does. .In general, use lower case letters for variable names. Variable names should be mnemonic (i.e., somewhat intuitive). Separate words within a variable name with an underscore or begin the second word with an uppercase letter Indent 2-4 spaces (optimally 4) within main. The editor should take care of proper indenting. Place no more than one C statement per line Do not type more than 80 characters per line Program: 1. Write a C program that does the following a. Declare a string variable (char array) of size 10 (to store a string up to 9 characters plus a 10 at the end). Note: An array of size 10 will have indices of 0-9 b. Display a message to the user that this program prints specific characters within a user-entered string c. Ask the user to enter a string of 9 characters or less. d. Output the following Character 0 is Character 4 is: Character 8 is: Th e program should compile without error and run gracefully Test with the input: Engineers For the submitted screen capture, run the program with the above value. (Feel free to try other values, but you don't have to submit those.)Explanation / Answer
#include<stdio.h>
int main() {
//Declare char array of size 10
char arrayr[10];
printf("This program prints specific characters from user-entered string ");
printf("Enter the string of length 0 to 9 ");
printf("---------------------------------------- ");
//You could get warning depending on version of compiler to use gets method
gets(arrayr);
printf("%s", arrayr);
printf("Character at 0th position is :%c", arrayr[0]);
printf(" Character at 4th position is :%c", arrayr[4]);
printf(" Character at 8th position is :%c", arrayr[8]);
}
OUTPUT:
This program prints specific characters from user-entered string
Enter the string of length 0 to 9
----------------------------------------
engineersCharacter at 0th position is :e
Character at 4th position is :n
Character at 8th position is :s
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.