Examples:
Input: name = "Rahul" Output: Rahul Explanation: The program prints "Rahul" to the screen. Input: name = "Vikas" Output: Vikas Explanation: The program prints "Vikas" to the screen. Program to Print Your Own Name Using printf
// C Program to Print Your Own Name using printf
#include stdio.h
int main() {
// Printing your name "Rahul" on the output screen
printf("Rahul");
return 0;
}
Output
Rahul
0 Comments