Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
22% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
2 Commented Posts
0 Endorsements
~12.4K People Reached
Favorite Tags
Member Avatar for vijaykrishnabor

Swap 2 number without using third variable code do not use temp variable for swapping if the code was useful please let me know [code]#include <stdio.h> void main() { int a,b; printf("enter number1: ie a"); scanf("%d",a); printf("enter number2:ie b "); scanf("%d",b); printf(value of a and b before swapping is a=%d,b=%d"a,b); …

Member Avatar for Mayukh_1
-1
7K
Member Avatar for xavier666

I've tried to make a [URL="http://en.wikipedia.org/wiki/Deque"]DEQUE[/URL] program. My book on data structures (Seymour Lipschutz) doesn't have an algorithm on DEQUES. Neither does [URL="http://www.itl.nist.gov/div897/sqg/dads/HTML/deque.html"]DADS[/URL] give a good description. All I heard was that it could be implemented better with two lists (one forward and one backward) & there are 2 types …

Member Avatar for WaltP
0
252
Member Avatar for sa.alavifar

i have a project in c# code with 3 leyer; and all of database code are in data leyer, which method is better? 1- send sql string statementto data base for select or update? 2 - using stored procedure? in databases with larg scale wich is better? pleas help me?!

Member Avatar for harrypalmerr
0
99
Member Avatar for muriloazevedo

Hello everyone, I wanna Update a Table schema having a DataTable. How can I do that? Thanks!:icon_mrgreen:

Member Avatar for vijaykrishnabor
0
97
Member Avatar for vijaykrishnabor
Member Avatar for mike_2000_17
0
129
Member Avatar for vijaykrishnabor

Hi is it possible to have recursive function as inline function ? this was question asked interview please help me

Member Avatar for mike_2000_17
0
2K
Member Avatar for vijaykrishnabor

Hi Please can anybody Tell me 1.what is virtual function in c++? 2.can we create virtual constructor and destructor and how to use it

Member Avatar for csurfer
0
143
Member Avatar for deepak.hm123

Somone please help me writing a code for "Reverse a word in a String" in c.. Ex: My name is XYZ o/p:XYZ is name My

Member Avatar for N1GHTS
0
206
Member Avatar for Unidennn

Im trying to figure the way and i just cant, any help would be appriciated. [CODE] void main () void abc (int ss[][7]); { int ss [6][7]=blah blah blah blah.... abc (ss); } void abc (int ss[][7]) { for (i=blah.... for (j= blah ss[i][j]=blah... blah blah } [/CODE] error: declaration …

Member Avatar for vijaykrishnabor
0
78
Member Avatar for rollercoaster

hi Iam having trouble arranging 3 words in alphabetical order lowest to highest inputted from the keyboard.Help would be appreciated.

Member Avatar for vijaykrishnabor
0
110
Member Avatar for harika.k

Hi, I am coding the loginpage, i want know how to code 1.) To check whether the User entered username,pwd matches with any of the rows of database data, if it is so it should navigate to next page like inbox.aspx. As i am new to Asp.net, please help me …

Member Avatar for vijaykrishnabor
0
2K
Member Avatar for Triztian

Hello all hope this section isn't abandoned, anyway any help is really appreciated. Heres my problem: So I'm designing this database to hold orders, a customer places an order, which can have up to four accessories, at first I designed this table: [LIST] [*]idOrder[*]Acc1[*]acc2[*]acc3[*]acc4 [/LIST] but then I realized that …

Member Avatar for Triztian
0
133
Member Avatar for SWEngineer

I want to ask about a term here. What does it mean when we say "Create a database"? What are we exactly doing? Thanks.

Member Avatar for vijaykrishnabor
0
69
Member Avatar for kcire015

Hi everyone! I'm currently doing my assignment and I'm stuck on making a form that uploads a picture, save it in a database and retrieve it via datagridview. I don't know where to start, i don't have any idea on putting objects in a database. Can't seem to find a …

Member Avatar for ArtistScope
0
67
Member Avatar for ashishkumar008

Hi....... This code is useful to check given string is palindrome or not. Actually, there are some other way also to check palindrome. So, be careful which code gives better efficiency. You can [COLOR="Red"]comment the line[/COLOR][COLOR="Green"]-bool caseignore= str.Equals(revstr, StringComparison.OrdinalIgnoreCase);[/COLOR] and in [B][COLOR="Red"]if[/COLOR][/B] condition you can use- if(string.Compare(str,revstr,true)==0)

Member Avatar for vijaykrishnabor
0
303
Member Avatar for vijaykrishnabor