/*to print your namr*/
/*by girish kumar raghuvanshi*/
#include<stdio.h>
#include<conio.h>
void main()
{
printf("print ur name");
puts("girish");
getch();
}
Write a c program that reads your first name and surname when you enter them. Each part of your name should not be more than 12 characters. Finally, have the program display your full name.
In QBASIC, you can use the INPUT statement to read data for your name, age, and address. Here's a simple program example: DIM name AS STRING DIM age AS INTEGER DIM address AS STRING INPUT "Enter your name: ", name INPUT "Enter your age: ", age INPUT "Enter your address: ", address PRINT "Name: "; name PRINT "Age: "; age PRINT "Address: "; address This program prompts the user to enter their name, age, and address, then prints the collected information.
Hi gys, are you looking to write a program to know the sign depends on the birth date or horoscope on python? write down following codes on python, those will make a nice program. #This program will get the horoscope sign. def getSign(): name = raw_input ("Enter Your Name: ") month = raw_input("Enter Birth Month: ") day = int(raw_input("Enter Birth Day of Month: ")) if month "y": main() letter = raw_input("Go again? (y/n): ")
To write a C program that requests the user to enter employee details such as name, ID number, wage, and tax code, you can use printf to prompt for input and scanf to read the values. Here's a simple example: #include <stdio.h> int main() { char name[50]; int id; float wage; char taxCode[10]; printf("Enter employee name: "); scanf("%49s", name); printf("Enter employee ID number: "); scanf("%d", &id); printf("Enter wage: "); scanf("%f", &wage); printf("Enter tax code: "); scanf("%9s", taxCode); return 0; } This program declares variables for each detail, prompts the user for input, and reads the values accordingly.
#include <iostream> #include <string> using std::cin; using std::cout; using std::endl; using std::string; int main() { cout << "Enter name of your favorite TV show: \n"; string tvShow = ""; cin >> tvShow; for (int i = 0; i < 15; i++) { cout << endl << tvShow; } cout << endl << endl; system("PAUSE"); return 0; }
Write a c program that reads your first name and surname when you enter them. Each part of your name should not be more than 12 characters. Finally, have the program display your full name.
abdulrahman
In QBASIC, you can use the INPUT statement to read data for your name, age, and address. Here's a simple program example: DIM name AS STRING DIM age AS INTEGER DIM address AS STRING INPUT "Enter your name: ", name INPUT "Enter your age: ", age INPUT "Enter your address: ", address PRINT "Name: "; name PRINT "Age: "; age PRINT "Address: "; address This program prompts the user to enter their name, age, and address, then prints the collected information.
Hi gys, are you looking to write a program to know the sign depends on the birth date or horoscope on python? write down following codes on python, those will make a nice program. #This program will get the horoscope sign. def getSign(): name = raw_input ("Enter Your Name: ") month = raw_input("Enter Birth Month: ") day = int(raw_input("Enter Birth Day of Month: ")) if month "y": main() letter = raw_input("Go again? (y/n): ")
write on/in stone, metal,paper;enter a name in a list write on/in stone, metal,paper;enter a name in a list write on/in stone, metal,paper;enter a name in a list
write a program of phone dirictory
clear echo -n "Enter the Name / String:" while : do read name echo $name | awk '{print gsub(/[aeiou]/,"")}' done
You need to install the font in your computer and then write your name with it by using Word or any other program. If you want to do it using a pencil, you can alway copy the fonts from a website. You can download the Fonts from the related link.
see : Write_a_shell_program_using_the_if-the-else_to_test_whether_a_variable_name_is_a_directory_or_a_file
ad1: install a compiler ad2: just enter the program's name at the prompt
To write a C program that requests the user to enter employee details such as name, ID number, wage, and tax code, you can use printf to prompt for input and scanf to read the values. Here's a simple example: #include <stdio.h> int main() { char name[50]; int id; float wage; char taxCode[10]; printf("Enter employee name: "); scanf("%49s", name); printf("Enter employee ID number: "); scanf("%d", &id); printf("Enter wage: "); scanf("%f", &wage); printf("Enter tax code: "); scanf("%9s", taxCode); return 0; } This program declares variables for each detail, prompts the user for input, and reads the values accordingly.
#includeusing std::cin;using std::cout;using std::endl;using std::string;int main(){string firstName = "John";cout firstName;string lastName = "Doe";cout lastName;cout