Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~2K People Reached
Favorite Forums
Favorite Tags
c++ x 7
c x 3
Member Avatar for dellat

I have more than one version of berkeleydb installed in my linux box and when I use -ldb to link berkeleydb to my c code I couldn't know which version is linked to. Please tell me which version is used by linker. I can't configure eclipse cdt with berkeley db …

0
69
Member Avatar for dellat

**I have download a setup.exe for GNU database library GDBM. It's going to be installed in C:\Program Files\GnuWin32 (lib, include, etc.). My mingw is in C: (C:\MinGW). Could you please tell me what is the right path for GDBM on windows. I used GDBM on Linux and compiled and linked …

Member Avatar for dellat
0
697
Member Avatar for dellat

Please tell me where it goes wrong as the following C++ code gives the error message: **addem.cpp:5: error: too few arguments to function int addem(int, int)** `#include <iostream> using namespace std; int addem(int, int); int main() { int x=5; int y=2; int z; z = addem(x+y); cout << "The value …

Member Avatar for dellat
0
380
Member Avatar for dellat

I have a question on a very basic operation of modulo operator. [B]Why does 1 % 9 produce 1?[/B] If 10 % 9 then remainder is 1. I am very poor in math but have had to use modulo operator many times before but always become confused and couldn't understand …

Member Avatar for dellat
0
116
Member Avatar for dellat

Hello, I'm looking for c++ api example for ncurses programming and needless to say that it is not available except 7 part snake game development video on youtube which is a bit difficult for a noob like me to understand. GNU ncurse 5.9 documentation heading states that it has c++ …

Member Avatar for dellat
0
591
Member Avatar for dellat

Has the following code any practical utility apart from showing the working of pointers? I got it while learning c in which the tutorial showings the features of pointer. Does a C programmer use this kind of code where a int pointer has been declared first and assigned a value …

Member Avatar for dellat
0
172