Skip to main content

x86 MASM C Linking

Jun 30, 2021LeifMessinger
Loading...

More Plaintext Posts

Untitled

Aug 7, 2024naiferomar366-60ef

0 likes • 1 view

gggg

SCCM drive formatting

Nov 18, 2022AustinLeath

0 likes • 1 view

in case of SCCM error 0x800700A1 do the following:
diskpart
list disk (list all disks on system)
select disk 0 (0 being the disk to setup)
clean (wipes the disk)
create partition primary (creates windows partition)
select partition 1 (selects the first partition)
format quick fs=NTFS (sets format of primary partition)
assign letter C (assigns the drive letter to "C")
exit (exits diskpart)

Lorem Ipsum Plaintext

Oct 15, 2022CodeCatch

0 likes • 0 views

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

</script>

Mar 29, 2023Helper

1 like • 3 views

test

Untitled

Aug 27, 2024vercetti322

0 likes • 4 views

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdlib>
#include <ctime>
using namespace std;
// Function to generate random numbers
vector<int> generateRandomNumbers(int count, int minValue, int maxValue) {
vector<int> numbers;
for (int i = 0; i < count; ++i) {
numbers.push_back(rand() % (maxValue - minValue + 1) + minValue);
}
return numbers;
}
// Function to print a vector of integers
void printVector(const vector<int>& vec) {
for (int num : vec) {
cout << num << " ";
}
cout << endl;
}
// Function to sort and display numbers
void sortAndDisplayNumbers(vector<int>& numbers) {
sort(numbers.begin(), numbers.end());
cout << "Sorted numbers: ";
printVector(numbers);
}
int main() {
// Seed the random number generator
srand(static_cast<unsigned int>(time(0)));
int count, minValue, maxValue;
cout << "Enter the number of random numbers to generate: ";
cin >> count;
cout << "Enter the minimum value: ";
cin >> minValue;
cout << "Enter the maximum value: ";
cin >> maxValue;
// Generate random numbers
vector<int> numbers = generateRandomNumbers(count, minValue, maxValue);
// Display unsorted numbers
cout << "Unsorted numbers: ";
printVector(numbers);
// Sort and display sorted numbers
sortAndDisplayNumbers(numbers);
return 0;
}

Wing Data

Oct 31, 2021aedrarian

0 likes • 3 views

##README: Rename file to "data" (no extension) and delete this line
4 4.55
5 5.70
6 6.80
7 7.95
8 9.10
9 10.20
10 11.35
11 12.50
12 13.60
13 14.75
14 15.90
15 17
16 18.15
17 19.30
18 20.40
19 21.55
20 22.70
21 23.80
22 24.95
23 26.10
24 27.25
25 27.80
26 28.95
27 30.10
28 31.20
29 32.35
30 33.50
35 39.15
40 44.80
45 50.50
50 55.60
60 67
70 78.30
75 83.45
80 89.10
90 100.45
100 111.25
125 139
150 166.85
200 222.50