Posts
 
Reputation
Joined
Last Seen
Ranked #206
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
96% Quality Score
Upvotes Received
155
Posts with Upvotes
127
Upvoting Members
87
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
4
39 Commented Posts
7 Endorsements
Ranked #260
Ranked #224
~268.02K People Reached
About Me

Extra Short Bio

Interests
§
PC Specs
Not very impressive
Favorite Tags
Member Avatar for samaru
Member Avatar for Hanz Jude
Member Avatar for TheNewKid

Refer to [this](http://msdn.microsoft.com/en-us/library/windows/desktop/bb787875%28v=vs.85%29.aspx) MSDN article.

Member Avatar for Greg_21
0
514
Member Avatar for Derkarol

I'll comment the code, I gather that the RegCreateKeyEx call succeeds. lReg = RegSetValueEx( hKeyp, L"ProxyEnable", NULL, REG_SZ, (LPBYTE)&value, // where is the value? sizeof(value) // for a REG_SZ this should be the string length in bytes including the terminating null );

Member Avatar for Derkarol
0
2K
Member Avatar for Xozz

Your FieldNames each have a terminating null, so as the error indicates, one of the names is too long.

Member Avatar for DGPickett
0
250
Member Avatar for user287961
Member Avatar for Sappie

Try passing a reference in your comparison function: bool CompareWorkshops(const Workshops &W1, const Workshops &W2) If that doesn't work, I'd need to see more of the code. You should also try stepping through the code in the debugger.

Member Avatar for tinstaafl
0
321
Member Avatar for Sagar_16

At line 60 you declare float temp = 0; Move the declaration to the top of main.

Member Avatar for nullptr
0
153
Member Avatar for kimmy2467
Member Avatar for kouty

In line 21, you are printing the string 'y' as an integer (%d). Change it to %s as follows printf("My first name is %s \n my last name is %s \n and I am %d years old\n", x, y, z);

Member Avatar for kouty
0
1K
Member Avatar for angbatangprog

`printf("Please fill in the boilerplate code provided and one of our human code bots may decide to assist you\n");`

Member Avatar for Apoorva_2
0
6K
Member Avatar for dukoolsharma
Member Avatar for Vikrant Singhal
-1
559
Member Avatar for amvx86

My preferred timer method is described [here](https://docs.microsoft.com/en-us/windows/desktop/sync/using-timer-queues). What time span are you looking at to check for open windows?

Member Avatar for rproffitt
0
606
Member Avatar for Yoni_2
Member Avatar for COKEDUDE

Try void replacevalue(char **pinput1) { char string[ ] = "here is the replacement string"; strcpy(*pinput1, string); }

Member Avatar for nullptr
0
2K
Member Avatar for alan.davies

![Capture.JPG](/attachments/large/3/7253ee192d3941478489733db40537af.JPG) Windows 7x64 with Internet Explorer 11 - dead hamburger and overlap.

Member Avatar for Dani
1
4K
Member Avatar for JustinRunyon

Something like the following would be a start. int main(void) { int key = 3; int c; while ((c = getchar()) != '\n') { if (isalpha(c)) { c = tolower(c) + key; if (c > 'z') c -= 26; // c = c - 26 } putchar(c); } putchar('\n'); return …

Member Avatar for nullptr
0
235
Member Avatar for paulofficial

No one here is going to write the code for the assignment that you copy/pasted. Please provide the code that you have written and explain where you are having a problem; that way we'll be able to assist you.

Member Avatar for nullptr
0
150
Member Avatar for rproffitt
Member Avatar for HAMMAD_5
Member Avatar for R1S8K
Member Avatar for dongtrien
Member Avatar for Rafin Ishraq

http://www.oracle.com/technetwork/java/javase/downloads/index.html

Member Avatar for scheppy
-4
154
Member Avatar for Addison111
Member Avatar for John_165

> I get value answer 21 which looked like not the smallest integer If you used 10000 instead of 1000 you would get 21.

Member Avatar for rproffitt
0
1K
Member Avatar for vishalonne

Using modular arithmetic as already suggested by ken, work out what expressions need to be evaluated in order to produce an output of `arr[0][0] arr[0][2] arr[1][1] arr[2][0] arr[2][2]`

Member Avatar for DIVYANSHI MANGAL
0
1K
Member Avatar for COKEDUDE
Member Avatar for Prathamesh_1
Member Avatar for rubberman
0
485
Member Avatar for zebnoon1
Member Avatar for rproffitt
0
548
Member Avatar for B E