Just remove it from the project. Then instead of a "missing library" error you may or may not get any "missing symbols" errors. If you get no...
The reason the loop was unending was that in the last iteration of the loop, i.e. when i==strlen(c), c[i] is the terminating NULL, which due to...
What you would need to do is to setup a logic analyser on the physical interface between the computer and dongle. For example if it connects to...
How would you do it with a dice? Let's try. 1 4 2 1 -oops, had a 1 already. Now what? And how did we know?
There are probably other things you need to do to make the above code work. Is there any reason why your main is C and plus is C++? If it was...
f() is not defined in main.c. So the compiler assumes this is an int with no parameters, i.e. int f(); If you want something other than that...
fgets is better than gets because it specifies a maximum count and won't overflow the buffer. Use stdin for the file pointer. If the string ends...
That doesn't explain why there would be a runtime error. It would explain why garbage is displayed and if I modify the program to add for (i=0;...
A stack frame has a fixed size and is deallocated when your function returns. So it's pretty useless for dynamic allocation. The size of a stack...
OK, it's not difficult. How far have you got and where are you stuck? Do you understand the assignment? An easy place to start is with the menu:...
If you want to start programming windows then the best place to start is with Charles Petzold's Programming Windows books. This takes you from...
I don't understand the problem with 1 and 2 and "i'm not able to get coding" - you already have coding. Are you trying to understand what the...
Every process in Windows has a process ID; open Task Manager, switch to the Processes view and make sure the PID column is enabled. There's a kill...
Probably it's a linker error then if you've found it in an include file and included that file. So you need to find out which library it's in and...
I don't think I can explain why you get the error. make itself has told you why you got the error ("can't find generic.mak") and I can't think of...
Could you explain what you think Side() is doing and how it fits into the algorithm for the rest of the program? (I can see what Side() *is*...
Case blocks must be terminated with break otherwise it will continue to the next: int x=1; switch(x) { case 1: printf("x is 1\n"); case 2:...
It expands the symbol DVD_MAKE, so instead of trying to include the file DVD_MAKE/generic.mak, if DVD_MAKE is set to /usr/home/me/dvdstuff then it...
What is the problem with the code, i.e. what is it doing that you didn't expect, or what isn't it doing that you did expect? What line does it...
Well you can try it. Get the PID from Task Manager, and the terminate signal is 9, so if the PID is 1000 the call would be kill(1000,9); If that...
Separate names with a comma.