#include <iostream> using namespace std; int main() { char name[50]; cout << "Please enter your name: "; cin >> name; cout << "Your name is: " << name << endl; }
Subscribe to:
Post Comments (Atom)
Directory implementation
The selection of directory-allocation and directory-management algorithms significantly affects the efficiency, performance, and reliabil...
-
Dynamic memory allocation with new and delete BY ALEX ON JULY 13TH, 2007 | LAST MODIFIED BY ALEX ON APRIL 24TH, 2019 The need for...
-
Write a C++ program to write number 1 to 100 in a data file NOTES.TXT. #include <iostream> #include <conio.h> #include <fs...
-
Pointers are powerful features of C++ that differentiates it from other programming languages like Java and Python. Pointers are used in...
No comments:
Post a Comment