Recent IT Questions

1 - 20 of 34
<<PREVIOUS 1|2 NEXT>>

Enum vs. Const

What is the difference between Enum and Const

View Answer   |  Sep 9 2009  8:27 PM GMT
Enumeration, C++, C++ classes
asked by 8862

  5 pts.

student details using c++

struct record { int ID; string name; string nationality; bool IsMale; }ExampleStudent;[/pre] this is what i can do so far to declare it variables.i need insert new record, delete and sort the record. so, what are the next steps? kindly show me the codes....

Answer Question   |  Sep 9 2009  12:59 AM GMT
C++, Software development, Arrays (programming)
asked by Spoinkgeek

  20 pts.

My C++ compiler showing error UNABLE TO OPEN IOSTREAM.H and IOSTREAM

My c++compiler showing error that unable to open iostream.h and unable to open output file. i hv already set the correct path of directories ,but still it give same error.plz help me . Software/Hardware used: Turboo c++ 3.0

View Answer   |  Aug 31 2009  3:35 PM GMT
C, C++, Compilers
asked by Ccpp

  5 pts.

Advantages of database system over File systems

What are the Advantages of database system over File systems? Software/Hardware used: c++

View Answer   |  Aug 23 2009  10:14 AM GMT
C++, Database Systems, File systems
asked by Yuyitui

  5 pts.

Data base with Visual C++

I am learning on Data Base management. I have installed Visual C++ and will use SQL server. But I don't know which component else to install, and how to connect to and use SQL Server. Can somebody help me? Thanks a lot Software/Hardware used: Visual C++, SQL Server

View Answer   |  Aug 18 2009  9:22 AM GMT
C++, Visual C++, SQL Server
asked by Makee

  15 pts.

Neural network in C++

which tool we can use to create nural network Software/Hardware used: c c++

View Answer   |  Aug 18 2009  4:00 AM GMT
Neural network, C++
asked by Tayyabali

  5 pts.

How to add toolbar button in Lotus Notes programmatically

Hi ALl, How to add a custom toolbar button programmatically using C,C++ Notes API? Also i would like to add functionality to the button click.Pls help me with this.

View Answer   |  Jul 17 2009  10:17 AM GMT
Lotus C++ API toolkit, Lotus development, C++
asked by Harishtg

  30 pts.

Input String

#include "stdafx.h" #include <iostream> #include <stdio.h> using namespace std; void main() { char line[33]; int no; cout<<"Enter no"; cin>>no; cout<<"Enter text"; gets(line); } When i run this code in Visual C++ 2008 using Ctrl + F5 Output comes as: Enter no...

Answer Question   |  Jun 28 2009  12:52 AM GMT
c++ string, Visual C++ 2008, C++
asked by Sunveer

  5 pts.

Data missing when printing label by Zebra 100XiIII Plus

There is a strange problem that some items are missing on the label from time to time. The possibility is about 0.1%. My 100XiIII is on parrallel port, I use ZPL language, code by Visual C++ 2008. The missing items are mixture of alphabet and number. I have tried to change the cable, printer, PC,...

View Answer   |  May 20 2009  2:53 AM GMT
Zebra 110XiIIIPlus, ZPL, C++
asked by Lianchang

  5 pts.

How you change a pointer from base class to derived class?

Hello, I have the following classes class Rock { public: Rock() { goldAmount = rand() % 100 + 1; price = 10; }; int revealContent() { return goldAmount; }; virtual void checkPrice() { cout << price << endl; }; protected: int price; private: int goldAmount; }; class...

View Answer   |  Apr 29 2009  11:07 AM GMT
C++, Class, Pointer
asked by CppStudent

  5 pts.

P2P SIP

hi. I SIP implemented in Peer to Peer under I wanted to use windows(visual C++).Under its Linux site in the existing www.p2psip.org but i need something like that but under use windows.please you guide me to hurry. by.

Answer Question   |  Apr 28 2009  4:17 AM GMT
VoIP, SIP, P2P
asked by Zahrad84

  5 pts.

convert c++ to c#

I don't know how can i conver c++ code to c# code can ypu help me? code: /* 2 * This is a MPI based sorting program. 3 * Copyright (c) Microsoft Corporation. All rights reserved. 4 */ #include "mpi.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include...

View Answer   |  Apr 15 2009  7:23 PM GMT
C++, C#, C++ to C# Conversion
asked by Abora

  5 pts.

where we have to use Pointer

hi I just want to know that where we have to use pointer??

View Answer   |  Apr 2 2009  7:39 PM GMT
C++, C++ Pointer
asked by Chetanm

  75 pts.

I want to input operater like "* / -"

hi I want to make a program enter value : 2*2/5(5*5)^2-5+69 and want the output of this calculation

View Answer   |  Mar 27 2009  12:44 AM GMT
C++, C++ Operators
asked by Chetanm

  75 pts.

photoshop in cpp

what is the code to impiement photoshop software in c++ language?

Answer Question   |  Dec 16 2008  3:25 PM GMT
Photoshop, C++, Code
asked by 1319

  5 pts.

Porting an application from Linux to Windows via C++ -- books or manuals?

I want to port an application that is compiled and executed on Linux, to Windows via c++. There are no Linux specific OS system calls, but yes there are lots of header files. Is there a paper or book, that I can refer to for more instructions?

Answer Question   |  Dec 12 2008  10:15 PM GMT
C++, Linux interoperability, Linux applications
asked by Linux - Ask the Expert

  225 pts.

C++ Compiler using vb.net

hi i am making a c++ compiler from about 3 months . i am using bloodshed's mingw32-gcc.exe as the compiler. i am sending the file path to the compiler as an argument it works fine but i want to do break points and step into and step out function can anyone please help me?? -Cold

Answer Question   |  Oct 14 2008  12:01 AM GMT
VB.NET, C++
asked by Cold

  25 pts.

Add-in button on toolbar of lotus notes

Can I create my own button(programmatically) in notes toolbar to trigger an action? I want to achieve this using c, c++ notes APIs. Is it possible? Please give me any hint to proceed. wbr, Ashoo

Answer Question   |  Oct 7 2008  12:38 AM GMT
Domino Designer, Lotus Notes, Lotus Notes 8.x
asked by Ashneet

  85 pts.

Understanding command line signals in C++ aka signal.h

Hi all, here is some code I am trying to understand. The two main things that I do not get are the reasoning behind the typedef, and the reason for saying signal(SIGINT, SIG_IGN); Thanks in advance for any help! Wikipedia was useful but only got me so far crab ...

View Answer   |  Sep 18 2008  6:27 AM GMT
Shells, C++, Shell commands
asked by Crabpot8

  95 pts.

Create a char in c++ - what does '' mean?

Hi all, I am working on a class project to make a simple shell program. I am googleing examples, and I came across this one on linuxgazette char c = '\0'; printf("\n[MY_SHELL ] "); while(c != EOF) { c = getchar(); if(c == '\n') printf("[MY_SHELL ] "); } printf("\n"); return 0; I...

View Answer   |  Sep 16 2008  8:25 PM GMT
Coding, C++
asked by Crabpot8

  95 pts.

1 - 20 of 34
<<PREVIOUS 1|2 NEXT>>