by Member 12381647
#include using namespace std;int st[100],top=-1;void push(int x){ st[++top] = x ;}void pop(){ if(top==-1) printf("Stack Overflow"); else printf("Delete = %d\n",st[top--]);}int main(){ push(10); push(100); push(-25); pop(); ...
by hasan hadi
HiI have problem in this code, the proplem how can know the port is buzy because now using delay for wait reading data from sender and after that reading this data from port, without this delay can't reading correct data private void Port_DataReceived(object sender,...
by Member 11220124
HI guys,I'm trying to add System.Collection.Generic Namespace to my project, but the problem is that I can't find that in my reference manager. What can I do for that. How can I add this namespaceWhat I have tried:I have tried searching the internet but their problem is resolved when...
by Mehak Naaz
Store procdureif(@Activity = 'All')select top 1 FullName,Email,Pasword,imgurl registration order by id descEndin UserDalpublic ListAll(ActivityMode a) { SqlConnection con = ConnectionDAL.SQL(); SqlCommand cmd = new SqlCommand(); ...
by Member 9331278
want to encrypt a passwords in the databases asp.net 2012What I have tried:String HashPassWrd = FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text, "SHA1");