processors that have datapath width and memory address width of 64bit.
"Does it mean all [...]"
no, on modern cpu's support "vector" registers, that are 256 or even 512 bit wide
What is a major difference between windows and Linux os
Anonymous
For example
#include <iostream>
int main()
{
int x;
std::cin >>x;
std::cout <<x;
return 0;
}
My question is if I enter
Input 23 for example
How can I recover the value when I close the program and open it another time
Badugar
Save the result in a file
Anonymous
OK with what library or keyword
Anonymous
Or library function
Onkar
Use file pointers FILE * open, write, close,
Anonymous
Yeah
Anonymous
Thanks
Anonymous
I got it
Onkar
Welcome
Dhaif
How can I change it to while loop
___
#include<iostream>
using namespace std;
int main()
{
for (int x=11;x>1;x--)
{
for (int z=1;z<x;z++)
cout<<"*";
cout<<endl;
}
}