About 7,130,000 results
Open links in new tab
  1. C program to print the name using array - CodeVsColor

    Oct 25, 2021 · I will show you different ways to print the content of an array. You will learn: How to take a name as input from the user. How to read and keep the name in an array. How to print …

  2. c - How to Print an array with names - Stack Overflow

    Sep 8, 2020 · In the statement: scanf ("%s",&a [i]);, the format code %s is expecting to process an array of char into a string. But &a [i] is a ingle character.

  3. Print your own name n times using for loop in C - R4R

    Print your own name n times using for loop Say We have print Sudhir Yadav 10 times then we need to write printf("Sudhir Yadav"); ten times. To avoid this have a for loop.

  4. C program to print your name 10 times - Sololearn

    Nov 1, 2022 · You can go through this code :- #include <stdio.h> int main() { char name[25]; scanf("%s", name); for (int i = 0; i < 10; i++) { printf("%d - %s\n", i+1, name); } return 0; }

  5. Write a C program that will display a name on the screen fifteen times

    Jan 10, 2014 · I want to write a C program that will display a name on the screen fifteen times. The program does not allow a loop. No WHILE, No DO WHILE, and No FOR LOOPS. You can …

  6. Print a Name Multiple Times Without Loop Statement in C

    Learn how to print a name multiple times without using loop statements in C language with this step-by-step guide.

  7. C program to print a name multiple times without using

    In this post, we will learn how to print a name or a string multiple times without using any loop or function. We can easily do it by using a loop that will run for n times and print the name for n …

  8. C program to read a name and print its 10 times using goto

    Nov 7, 2017 · Given a name (string) and we have to print its 10 times using goto in C language. goto is a jumping statement, which transfers the program's control to specified label, in this …

  9. CodeForHunger: C Program to print your name 10 times without using

    Write a C Program to print your name 10 times without using loops or goto statement recursion function. How to write a C Program to print your.....

  10. Print 10 times Name using For Loop in C Programing - YouTube

    Print 10 times Name using For Loop in C ProgramingOur Playlist :-----C Programing language :- https://youtube.com/playlist?list=PLmwNpDjrXaDJ70aeEQ2N-Z...

Refresh