Search:

Type: Posts; User: gallupingcactus

Search: Search took 0.01 seconds.

  1. #include int main(void) { ...

    #include<stdio.h>
    int main(void)
    {
    char first[50];
    char last[50];
    printf("Enter a first and last name: \n\n");
    scanf("%s %s", first, last);
    printf("%s, %c.", last,...
  2. I'm trying to separate the array into the the...

    I'm trying to separate the array into the the first name and last name parts. I don't know the ascii equivalent of the space-bar and in general, it is better to use the single quotes to refer to...
  3. I have a C textbook, I have looked at it and I...

    I have a C textbook, I have looked at it and I have not found anything that explains how to print a fragment of the data in an array. From what I understand homework is meant to be a learning...
  4. Help with array to manipulate name data

    Hello, I am trying to create a program that asks the user to input a first and last name and then outputs it in the following format:

    George Washington
    Washington, G.

    Here is what I have; it...
Results 1 to 4 of 4