Search Results

Showing results 1 to 40 of 40
Search took 0.01 seconds.
Search: Posts Made By: cutedipti
Forum: C 19 Days Ago
Replies: 1
Views: 128
Posted By cutedipti
A hospital keeps a file of blood donors in which each record has the following information
(i) Name
(ii) Age
(iii) Address
(iv) Contact no.
(v) Blood group.
I have to write a program to...
Forum: Oracle Aug 18th, 2009
Replies: 5
Views: 1,232
Posted By cutedipti
hello!

As i am trying to insert multiple rows using following command


insert into customer(c_id,c_name,c_city,c-street)
values('C101','Hayes','Downtown','Main'),
...
Forum: C Aug 11th, 2009
Replies: 3
Views: 764
Posted By cutedipti
Hello all,
I am implementing linked list programs in C. And for that i want to know more about Self Referential Structure in C. If anyone knows more detail information about it then...
Forum: Oracle Jul 13th, 2009
Replies: 4
Views: 586
Posted By cutedipti
hello,
I am not getting which SQL statement should be used to insert multiple data at a same time without writing
insert into...
again and again.
suppose whenever i want to insert data...
Forum: Oracle Jul 13th, 2009
Replies: 4
Views: 567
Posted By cutedipti
Both will be ok, if it's e-book or not.
Forum: Oracle Jul 13th, 2009
Replies: 4
Views: 567
Posted By cutedipti
Hello,
plz tell me a perfect book which includes all SQL Queries with solved examples. So i will do well practie with it.
Forum: Oracle Jul 9th, 2009
Replies: 1
Views: 1,275
Posted By cutedipti
Hi
I have created many tables in database. Now when i used to create new table that's name may already exists. So, before creating new table i must know which table names are already exists in...
Forum: Motherboards, CPUs and RAM Jun 29th, 2009
Replies: 2
Views: 488
Posted By cutedipti
Hello,
I want to know about each every part on motherboard or can say to study motherboard deeply. so is there any book which include such a description or any website which describe...
Forum: Java Jun 27th, 2009
Replies: 4
Views: 215
Posted By cutedipti
It's .........
Class.forName("sun.jdbc.odbc.JdbcOdbcDriverManager");

& other is......
finally
{
System.out.println("Always");
}
Forum: Java Jun 27th, 2009
Replies: 3
Views: 217
Posted By cutedipti
Actualy i am about :
JDBC-ODBC bridge driver
OR JDBC-Net pure java driver
Forum: Java Jun 27th, 2009
Replies: 2
Views: 281
Posted By cutedipti
A university has few seats vacant for the new academic yea in the various departments. Students from all over the country send in their applications to the admissions department. The applications...
Forum: Java Jun 27th, 2009
Replies: 3
Views: 217
Posted By cutedipti
Which JDBC driner is used to connect a java client application to a database over aTCP/IP connection?
Forum: Java Jun 27th, 2009
Replies: 4
Views: 215
Posted By cutedipti
consider the following snippet:
import java.sql.*;
public class test
{
public static void main(String args[])
{
try
{
...
Forum: C Nov 20th, 2008
Replies: 6
Views: 1,750
Posted By cutedipti
Hye, that's user's choice!
Order of the matrix will be entered by the user according to his/her choice as the the matrix he/her wants to sort

Output will be as below:

Enter the order of the...
Forum: C Nov 19th, 2008
Replies: 1
Views: 422
Posted By cutedipti
H!

Aim of my program is: Write a program using recursive function for sorting numbers entered by user without using array concept to hold elements/numbers.

Output of the program will be...
Forum: C Nov 19th, 2008
Replies: 6
Views: 1,750
Posted By cutedipti
H!
I have to write a program for sorting two dimensional array(e.g. Matrix) without converting it into a single dimensional array or using pointer concept. So, can u please give me any idea...
Forum: C Oct 24th, 2008
Replies: 8
Views: 1,976
Posted By cutedipti
H!
It's a concept of local and global declaration. If u declare a function inside main() then that function is local to main() means the function is accessed by only main() and it's life time...
Forum: C Oct 18th, 2008
Replies: 11
Views: 1,839
Posted By cutedipti
Hye See...

As usual, there are some exceptions, check your compiler's documentation to see if it has a (non-portable) method for flushing input.
Ya its right that using fflush(stdin) is not 100%...
Forum: C Oct 17th, 2008
Replies: 11
Views: 1,839
Posted By cutedipti
H!

>>>>As your having a problem in getting the character input that it's not accepting it correctly.

See the problem is due to the 'New line' character. All your character variables get...
Forum: C Oct 17th, 2008
Replies: 5
Views: 612
Posted By cutedipti
Hye h!!

There are basically three types of storage classes. They are:
1)Atomic Storage
2)Register Storage
3)External
4)Static

These all are used depending on programmers choice and their...
Forum: C Oct 17th, 2008
Replies: 6
Views: 1,201
Posted By cutedipti
.
.
.

>Global, static, and local variables were often stored in the stack
Kinda sorta.

...Kinda sorta....???
Forum: C Oct 15th, 2008
Replies: 6
Views: 1,201
Posted By cutedipti
H!

Could any one please tell me with some proper explanation for: Where dose Global, Static, Local, Register variables stored in memory?
Forum: C Oct 15th, 2008
Replies: 10
Solved: printf
Views: 846
Posted By cutedipti
>but the code will be large enough and not good from good programmers view
Um, how do you think printf was written? Granted, cutedipti probably doesn't compare to the quality of programmer that...
Forum: C Oct 14th, 2008
Replies: 7
Poll: program in c
Views: 676
Posted By cutedipti
H...!

Can you please tell me out of fgets() and gets() which function is safe to use and why? If possible give an example program for explanation.
Forum: C Oct 14th, 2008
Replies: 13
Views: 13,408
Posted By cutedipti
Hye hi!
You have to first separate all the digits of the number passed to the function you may do it by the following way
a=n%10;
n=n/10;
...
Forum: C Oct 14th, 2008
Replies: 10
Solved: printf
Views: 846
Posted By cutedipti
Hi,

I have one query that: Can we write a function similar to printf()? If it is possible then how could it be written?
Forum: C Oct 14th, 2008
Replies: 1
Views: 491
Posted By cutedipti
Hellow.......!
I need a help for: How will you declare an array of three function pointers where each function receives two integers and returns a float?
Forum: C Oct 13th, 2008
Replies: 3
Views: 462
Posted By cutedipti
Hye hi,
Actually you have not mentioned your problem clearly & exactly. According to me you need a help for program which add subtract and square three numbers ok.
So, for this your...
Forum: C Oct 13th, 2008
Replies: 2
Views: 418
Posted By cutedipti
Hi,

I have a query regarding to the storage of program that: Where dose c-program instructions get stored? And where dose local variables get stored in memory?
Forum: C Oct 13th, 2008
Replies: 2
Solved: Regression
Views: 380
Posted By cutedipti
Hi
I need one example on regression. Also tell between recursion and regression which one is faster?
Forum: C Oct 3rd, 2008
Replies: 8
Solved: Null Char
Views: 1,989
Posted By cutedipti
Hi,
Ya it's absolutely right that when we initialize array as:
a[3]={1,2} then it will assign last element to zero automatically.
But while considering as a string it must be terminated...
Forum: C Oct 1st, 2008
Replies: 8
Solved: Null Char
Views: 1,989
Posted By cutedipti
Hi,
When we define any integer array like
int a[3]={1,2,3};
then it will assign the values as a[0]=1, a[1]=2, and a[2]=3
But, when we define any character array as
...
Forum: Java Sep 26th, 2008
Replies: 2
Views: 1,465
Posted By cutedipti
Hye HI,

Try this one:

String URL="http://www.google.com";
com.ice.jni.registry.ApplicationStarter.start(URL)

OR

If you specifically want to open IE then use JACOB
Forum: C Sep 23rd, 2008
Replies: 1
Views: 372
Posted By cutedipti
what dose the error " Null pointer assignment" means and what causes this error?:idea:
Forum: C Sep 19th, 2008
Replies: 2
Solved: He!!p HeeR!
Views: 419
Posted By cutedipti
h! friends
i am not gettin output for below program..
it shows segmentation fault...:-O
can any one suggest me on this....

#include<stdio.h>
#include<string.h>
int main()
{
char...
Forum: C Sep 19th, 2008
Replies: 4
Solved: Character input
Views: 1,809
Posted By cutedipti
thax to solve may query!
Forum: C Sep 17th, 2008
Replies: 4
Solved: Character input
Views: 1,809
Posted By cutedipti
H! plz solve a problem..............!
See I want to take continuous four input from the user, out of which three are character type and one is of int type. So my problem actually is that, it accepts...
Forum: Community Introductions Sep 15th, 2008
Replies: 4
Views: 536
Posted By cutedipti
Hye Tanx to a!!..............
Forum: C++ Sep 12th, 2008
Replies: 8
C
Views: 3,558
Posted By cutedipti
Hye,
To learn these languages well you just need to take maximum of 2-3 months only.
If ur interested go ahead.:icon_cool:
Forum: Community Introductions Sep 12th, 2008
Replies: 4
Views: 536
Posted By cutedipti
Hi, I am new to this site. I too like njoy at daniweb.com with you guys. :icon_smile:
Showing results 1 to 40 of 40

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC