- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
33 Posted Topics
Re: 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; b=n%10; n=n/10; until n>0 and then combine all these digits in the reverse order like if a is 1st, b is 2nd in … | |
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 please tell me. I am having one example here which helps you to understand more clearly what … | |
Re: 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 need in the program. Their respective variables are called Atomic variable: e.g.- auto int a; //a is considered as atomic variable Register … | |
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 my database. And for that i want to display all the tables created in … | |
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 char a[3]={'a','b'}; then compiler here automatically consider '\0' null character to represent the end of the string So, my question here … | |
Hello, Anybody knows about Relational Database Primer. Is there any difference between Relational Database Primer & Relational database? What is the concept of Relational Database Primer? | |
Hello, what is the exact range of L1 & L2 cache memory (Size)? I am having confusion in both of them. | |
Hello, Can anybody help me on the issue below:- [B]'Features of C language that uses indirect addressing mode.'[/B] I didn't get it's meaning exactly. Whether it is Function 'Call By Value', as we are not refering direct address of variables like in 'Call By reference' or anything else. Please help … | |
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 enter record into a data file “blood donors.dat” and display information of each donors. And … | |
hello! As i am trying to insert multiple rows using following command [ICODE] insert into customer(c_id,c_name,c_city,c-street) values('C101','Hayes','Downtown','Main'), ('C102','Willum','Perryridge','North'), ('c103','Smit','Brooklyn','Park'); [/ICODE] It always gives me an error that [TEX] ERROR at line 2: command not properly ended [/TEX] Please tell me why this error is occuring & what's solution to it? … | |
hello, I am not getting which SQL statement should be used to insert multiple data at a same time without writing [ICODE]insert into...[/ICODE] again and again. suppose whenever i want to insert data into 'customer' table then i may write statement as [ICODE]insert into customer(c_id,c_name,c_city,c-street) values('C101','Hayes','Downtown','Main')[/ICODE] But it will create … | |
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 motherboard with diagrams(pictures) of all parts. | |
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 will be processed & students who have cleared the test criteria will be admitted to the department. It has … | |
consider the following snippet: import java.sql.*; public class test { public static void main(String args[]) { try { Class.forNameI"sun.jdbc.odbc.JdbcOdbcDriverManager"); Connection cn; cn=DriverManager.getConnection("jdbc:odbc","username","password"); Statement st=cn.createStatement(); st.executeQuery("select * from emp"); System.out.println("Succeed"); } catch(Exception e) { System.out.println("Faild"); } finall() { system.out.println("Always"); } } } what will be the result | |
Which JDBC driner is used to connect a java client application to a database over aTCP/IP connection? | |
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 for writing this program? | |
H! Aim of my program is: Write a program [B]using recursive function[/B] for sorting numbers entered by user [B]without using array concept[/B] to hold elements/numbers. Output of the program will be as follows: [B]Enter the number of elements you want to sort:[/B] 12 [B]Enter the elements for sorting:[/B] 3 7 … | |
Re: H...! Can you please tell me out of [B]fgets()[/B] and [B]gets()[/B] which function is safe to use and why? If possible give an [B]example program[/B] for explanation. | |
Re: [QUOTE=J-son;719914]Hi there again :) Could someone tell me what is the difference between function declare in main() and outside main() ? Because I don't see anything wrong. Thanks so much in advance. Here is example, [CODE=c] #include <stdio.h> //void fun(int x,int y, int z); int main() { void fun(int x,int … | |
Re: 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 stored in the stack if we are taking one variable input and after that generally we press Enter … | |
H! Could any one please tell me with some proper explanation for: [B]Where dose Global, Static, Local, Register variables stored in memory?[/B] | |
Re: 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 solution is here:you may define three different functions for that [code=c] { int a,b,c,s,sqr,sub; printf("Enter Three positive … | |
Hi, I have one query that: Can we write [B]a function similar to printf()[/B]? If it is possible then how could it be written? | |
Hellow.......! I need a help for: How will you declare [B]an array of three function pointers[/B] where each function receives two integers and returns a float? | |
Hi, I have a query regarding to the storage of program that: Where dose [B]c-program instructions get stored[/B]? And where dose [B]local variables get stored in memory[/B]? | |
Hi I need one example on regression. Also tell between recursion and regression which one is faster? | |
Re: [QUOTE=deepa_vsd;699437]Hi, I have opened Internet Explorer by using Process p = Runtime.getRuntime().exec(browserCommand+" " +url_name); Now I want to know how to close opened internet explorer using java program I used p.destroy() method, but it's not working.[/QUOTE] Hye HI, Try this one: String URL="http://www.google.com"; com.ice.jni.registry.ApplicationStarter.start(URL) OR If you specifically want to … | |
what dose the error " Null pointer assignment" means and what causes this error?:idea: | |
h! friends i am not gettin output for below program.. it shows [B]segmentation fault[/B]...:-O can any one suggest me on this.... [code=c] #include<stdio.h> #include<string.h> int main() { char *str1="United"; char *str2="front"; char *str3; str3=strcat(str1,str2); printf("\n%s",str3); return 0; } [/code] thanks:) | |
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 only three input i.e. 2 char and one int & for remaining char … | |
[COLOR="Green"]Hi, I am new to this site. I too like njoy at daniweb.com with you guys.[/COLOR] :icon_smile: | |
Re: [QUOTE=MAD_DOG;306]How long did it take you to learn C++ or C or VB. I learning some what C for my Linux class.[/QUOTE] Hye, To learn these languages well you just need to take maximum of 2-3 months only. If ur interested go ahead.:icon_cool: |
The End.