Skip to content

Putchar #6

Description

@Elieyeo9

#include "holberton.h"
/**

  • main - Entry point

  • Return: Always 0 (Success)
    */
    int main(void)
    {
    char *sh = "Holberton";

    while (*sh)
    {
    _putchar(*sh);
    sh++;
    }
    _putchar('\n');

    return (0);
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions