Posts by G.Carlos • 299 points
9 posts
-
1
votes1
answer131
viewsQ: Output of largest matrix value exiting incorrect
The code does not print the highest value of the matrix informed by the user #include<stdio.h> #include<locale.h> int main(void){ setlocale(LC_ALL, ""); int n, m, o=0, posic, posic1; int…
-
2
votes1
answer102
views -
0
votes1
answer367
viewsQ: Save last value to variable and display
I’m having a problem in my program its function is to display on the screen how much ram memory the process is currently consuming and display the peak of memory usage, so my problem is when I close…
-
0
votes1
answer171
viewsQ: Identify the largest number
I’m making a resource monitoring software and I’m having trouble getting it to identify the largest number. public string max() { System.Diagnostics.Process[] ieProcs =…
-
0
votes0
answers27
viewsQ: Error on some computers when trying to capture processor voltage by WMI
On only a few computers while running my hardware specification program it accuses an error on the 155 line. public static String voltage() { String Ic = String.Empty; foreach (var item in new…
-
0
votes3
answers183
viewsA: Visual Studio 2013 no install in windows 7
Enable Windows Update for sure problem is this to enable Windows Upadate on Windows 7 if you don’t know: Control Panel > Windows Update > Change settings > Install updates automatically…
-
1
votes0
answers69
viewsQ: Capture video card name via NVAPI dll
How to import the DLL "nvapi.dll" to the program in C#? Not sure how to capture the video card name: NvAPI_GPU_GetFullName - CEEE8E9F
-
11
votes4
answers25519
viewsQ: The input character string was not in an incorrect format. Operators
Hello, I’m beginner in programming and I’m trying to show the user how much RAM is being consumed at the moment, I’m using the following code that is not pointing nor an error when compiling only…
-
4
votes2
answers995
views