Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 25 of 25
Search took 0.01 seconds.
Search: Posts Made By: sharadpro
Forum: C Mar 14th, 2007, 3:46 AM
Replies: 2
Views: 175
Posted By sharadpro
Return type - main() / ISO C standard

The ISO C++ standard clearly wants the return type of main to be int, so there is no conflict there.But quoting from the link given below,ISO C standard doesn't say so...
Forum: C++ Feb 5th, 2007, 9:13 AM
Replies: 1
Views: 136
Posted By sharadpro
substitute : getch()

What is the substitute for getch() for inputting a character without an echo?
getch() isnt a part of the standard,so what is the alternative?

and also what is the substitute of getpass() ?
Forum: C++ Feb 5th, 2007, 8:22 AM
Replies: 1
Views: 142
Posted By sharadpro
Operator Precedence

Quoting the book Thinking in C++,
while((char c = cin.get()) != 'q')
The addition of the extra parentheses would seem like an innocent
and useful thing to do, and because you cannot use them,...
Forum: C++ Feb 4th, 2007, 11:23 AM
Replies: 3
Views: 178
Posted By sharadpro
Size of inherited class!

#include<iostream>
using namespace std;

class X
{
int x;
public:
int y;
protected:
int z;
Forum: C++ Oct 8th, 2006, 12:56 AM
Replies: 4
Views: 204
Posted By sharadpro
Difference : STL and Standard library

What is the difference between C++'s Standard Library and Standard Template Library?
Forum: C Jul 7th, 2006, 1:38 PM
Replies: 5
Views: 225
Posted By sharadpro
main() and main(int argc,char*argv[])

as we cant use function overloading in c..
then how are
main()
and
main(int argc, char *argv[]) used?
Forum: HTML / XHTML / CSS Jul 4th, 2006, 1:27 PM
Replies: 4
Views: 229
Posted By sharadpro
any help??

any help??
Forum: HTML / XHTML / CSS Jul 4th, 2006, 11:05 AM
Replies: 4
Views: 229
Posted By sharadpro
File upload in firefox

Hi!
I am using a browse for file element in a form .
I am submitting it to a JSP page where I would be writing the code to upload that file.
This works fine in IE but in Firefox I get only the...
Forum: Java Jul 3rd, 2006, 5:15 AM
Replies: 4
Views: 135
Posted By sharadpro
Thank you so much for the help,Arevos!!

Thank you so much for the help,Arevos!!
Forum: Java Jul 3rd, 2006, 5:00 AM
Replies: 4
Views: 135
Posted By sharadpro
I wasnt closing closing the connections to the...

I wasnt closing closing the connections to the database..Once I did that the problem seems to have been resolved...
Was this a fluke or could it be the reason that was bugging me!!
Forum: Java Jul 3rd, 2006, 4:07 AM
Replies: 4
Views: 135
Posted By sharadpro
slow Jsp

I am making a small website in JSP that interacts with the database<MS access>.I am using Tomcat and running the website on localhost. When I open it , It works fine for sometime but as I browse...
Forum: Java Jun 22nd, 2006, 1:05 PM
Replies: 8
Views: 203
Posted By sharadpro
applying parseInt to empty string in a jsp application

Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc: odbc:Forum");
Statement st = con.createStatement();
String sql= "select *...
Forum: Java May 25th, 2006, 7:53 AM
Replies: 3
Views: 241
Posted By sharadpro
flushing input buffer

how can the input buffer be flushed ??
wats the function and its syntax?
thank you!!

class MenuD
{
public static void main(String args[])
throws java.io.IOException
{
char choice;
Forum: C++ May 14th, 2006, 11:20 AM
Replies: 5
Views: 194
Posted By sharadpro
Yes!!thx Ooble bt I was just trying to find out...

Yes!!thx Ooble bt I was just trying to find out what was wrong with this!!
thx anyways!!
Forum: C++ May 14th, 2006, 8:56 AM
Replies: 5
Views: 194
Posted By sharadpro
Processor Exception Error!!

#include<iostream.h>
#include<iomanip.h>
#include<fstream.h>

int main()
{
char *buffer1 ,*buffer2;
int i=0,j=0;
fstream f;
char ch;
Forum: Java May 11th, 2006, 12:17 AM
Replies: 2
Views: 236
Posted By sharadpro
Starting with J2EE

I have learnt C/C++.
Now I want to do J2EE!The problem is that I havent learned Java : the prog. language!Would it be feasible?
How much of knowlegde of Java prog lang is required to do j2EE?
Forum: Java Apr 10th, 2006, 9:27 AM
Replies: 2
Views: 240
Posted By sharadpro
difference between java and j2ee??

What is the difference between Java n J2EE??
If I have the option of learning C#.net or java , which should I prefer at the moment??
Forum: C++ Apr 4th, 2006, 10:07 PM
Replies: 3
Views: 210
Posted By sharadpro
Function to delete / rename a file

rename() and remove() functions are used in C.Pls tell the functions to rename and delete a file in C++!
Forum: C++ Mar 30th, 2006, 8:55 AM
Replies: 3
Views: 149
Posted By sharadpro
I m asking that say if I vary the get pointer for...

I m asking that say if I vary the get pointer for a file using seekg() , does the put pointer also shift along with it and go to the byte position<where the get pointer now is>?
Forum: C++ Mar 30th, 2006, 8:30 AM
Replies: 3
Views: 149
Posted By sharadpro
Get and put file pointers

Do the get and put file pointers shift simulataneously ??
For eg if I shift the position of the get pointer , does the put pointer shift simultaneously n vice versa???
Pls tell if the cases for the...
Forum: C++ Mar 28th, 2006, 6:40 AM
Replies: 17
Views: 512
Posted By sharadpro
the problem i was refering to in post#8 is that...

the problem i was refering to in post#8 is that if there are two or more SEPARATE .cpp files in the project , they would have two 'mains'.
And when there are two 'mains' , build error says : main...
Forum: C++ Mar 27th, 2006, 9:05 AM
Replies: 17
Views: 512
Posted By sharadpro
When I make an empty project n compile a single...

When I make an empty project n compile a single file , it is fine but when I add program to it
Error on build ::
error LNK2005: _main already defined
How to solve this?
Forum: C++ Mar 27th, 2006, 8:30 AM
Replies: 17
Views: 512
Posted By sharadpro
Compiling .cpp file using Microsft Visual Studio 2005

Can anyone pls tell me how to compile n build a single .CPP file<program>
using Microsoft Visual Studio 2005 <Express Edition>without creating a project n solution as is possible in Visual Studio...
Forum: C# Mar 26th, 2006, 12:45 AM
Replies: 3
Views: 197
Posted By sharadpro
My current programming experience : C and C++ By...

My current programming experience : C and C++
By hours I mean the real hrs that may be required to cover C# on .NET framework
I hav no knowledge of either C# or the .net framewrk
Forum: C# Mar 26th, 2006, 12:37 AM
Replies: 3
Views: 197
Posted By sharadpro
optimal number of hours for C#.net course

Pls tell me the optimal no of hours required for a C#.net training program/course.
<<I have never worked on the .Net framework>>
Also pls guide which of two C#.net/VC++.net has better prospects in...
Showing results 1 to 25 of 25

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 3:33 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC