- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
16 Posted Topics
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); …
Hi Sumitro Bhaumik i have code for deque and it smaller and easy to understand if so please let me know [CODE] #include <stdio.h> #define MAX 5 struct deque { int arr[MAX]; int rearleft,rearright,frontleft,frontright; }; void insertleft(struct deque *p ,int v) { if(p->rearleft+1==p->rearright) { printf("DEQUE OVERFLOW"); } else { p->arr[++p->rearleft]=v; …
hi i think you should use select or update statement and stored procedure on table which most stable
hi please can you describe it in some more details what you really want to do
hi please can anyone tell me the difference between virtual function and abstraction function .
Hi is it possible to have recursive function as inline function ? this was question asked interview please help me
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
HI deepak.hm123 the code will the desired output [CODE] void strev(char str[]) { int I,len=strlen(str);//strlen give length of string for(I=0;len=len-1; I>=len;I++;len--) { char temp; temp=str[I]; str[I]=str[len]; str[len]=temp; } ) [/CODE]
hi please post code and actual problem and error encounter
Hi get the ASCII value for each alphabet and then arrange then in order you want A=65.......
Hi harika.k the following code will useful it is login code table structure in database is also give at end [CODE] private void loginbtnbtn_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(); string str = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=cardb;Data Source=SAIDATTA-051EA8\\SQLEXPRESS"; con.ConnectionString = str; con.Open(); string query = "select …
i think you can make composite primary key =(IDORDER+ACCESSORY ) it will work for your problem
When we use Create database to create a Database . it is Stored as a set of files on the hard disk of the computer
Hi friend Can you tell which programming language you using Bcouz i have code in c# and that also to display image in picture box and store in database
The End.
vijaykrishnabor