Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~21.1K People Reached
Favorite Tags
Member Avatar for DemonLady

I got this assignment and I'm stuck. I have to write a function that takes an integer value and returns the number with its digits reversed. For example, given the number 7631, the function should return 1367. Can someone help? :confused:

Member Avatar for Ajini
0
3K
Member Avatar for 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 please tell me. I am having one example here which helps you to understand more clearly what …

Member Avatar for mungara
0
1K
Member Avatar for dhingra

plese anyone can tell me about storage classes and their use in progg. >>>>>>

Member Avatar for salil_ag
0
163
Member Avatar for 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 my database. And for that i want to display all the tables created in …

Member Avatar for mangal4mTerna
0
312
Member Avatar for 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 char a[3]={'a','b'}; then compiler here automatically consider '\0' null character to represent the end of the string So, my question here …

Member Avatar for gerard4143
0
269
Member Avatar for cutedipti

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?

Member Avatar for qualitybrains
0
95
Member Avatar for cutedipti

Hello, what is the exact range of L1 & L2 cache memory (Size)? I am having confusion in both of them.

Member Avatar for caperjack
0
84
Member Avatar for cutedipti

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 …

Member Avatar for Ancient Dragon
0
176
Member Avatar for 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 enter record into a data file “blood donors.dat” and display information of each donors. And …

Member Avatar for Gaiety
0
94
Member Avatar for cutedipti

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? …

Member Avatar for Princeomari
0
495
Member Avatar for cutedipti

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 …

Member Avatar for anubina
0
119
Member Avatar for cutedipti

Hello, plz tell me a perfect book which includes all SQL Queries with solved examples. So i will do well practie with it.

Member Avatar for anubina
0
157
Member Avatar for 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 motherboard with diagrams(pictures) of all parts.

Member Avatar for walata
0
64
Member Avatar for 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 will be processed & students who have cleared the test criteria will be admitted to the department. It has …

Member Avatar for JamesCherrill
0
109
Member Avatar for cutedipti

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

Member Avatar for peter_budo
-1
112
Member Avatar for cutedipti

Which JDBC driner is used to connect a java client application to a database over aTCP/IP connection?

Member Avatar for peter_budo
0
77
Member Avatar for 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 for writing this program?

Member Avatar for ArkM
0
98
Member Avatar for cutedipti

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 …

Member Avatar for Nick Evan
0
105
Member Avatar for gunjanagrawal

U can find all the program in c.If du u have any query about c plz ask me and also program

Member Avatar for nucleon
-1
183
Member Avatar for J-son

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 …

Member Avatar for Denniz
0
10K
Member Avatar for En-Motion

I'm trying to write a program to calculate a bill for a user after they enter in some details. It doesn't allow the user to enter in a value for the 'use code', instead skipping that step. Below is only a rough draft of the program, there's plenty still to …

Member Avatar for WaltP
0
143
Member Avatar for cutedipti

H! Could any one please tell me with some proper explanation for: [B]Where dose Global, Static, Local, Register variables stored in memory?[/B]

Member Avatar for Narue
0
206
Member Avatar for rrreeefff

Hello! I am working on some code for a program that squares,sums and divides 3 numbers: [code=cplus] int num,sq,sumd; int a; int b; int c; printf ("Please enter a positive integer for a/n"); //input scanf ("%d", &a); printf ("Please enter a positive integer for b/n"); //input scanf ("%d", &b); printf …

Member Avatar for ahamed101
0
101
Member Avatar for cutedipti

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?

Member Avatar for Narue
0
126
Member Avatar for cutedipti

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?

Member Avatar for grumpier
0
120
Member Avatar for cutedipti

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]?

Member Avatar for Salem
0
95
Member Avatar for cutedipti

Hi I need one example on regression. Also tell between recursion and regression which one is faster?

Member Avatar for Narue
0
95
Member Avatar for deepa_vsd

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.

Member Avatar for Ezzaral
0
156
Member Avatar for cutedipti

what dose the error " Null pointer assignment" means and what causes this error?:idea:

Member Avatar for Ancient Dragon
0
65
Member Avatar for cutedipti

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:)

Member Avatar for ithelp
0
87