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
~753 People Reached
Favorite Tags
c++ x 4
c x 2
java x 1
Member Avatar for directorabbey

void Halt (); void Reply (const char * num,uint8_t stat); { this is the error message for this code 7|error: 'uint8_t' has not been declared 9|error: expected unqualified-id before '{' token

Member Avatar for directorabbey
0
266
Member Avatar for directorabbey

i am designing an app. The first stage is to allow the user to select a username and password. The system stores it and uses it as an authentication during login. my question is: do i use a fucntion or an array to capture the login info for the first …

Member Avatar for jwenting
0
79
Member Avatar for directorabbey

#include <iostream> using namespace std; int main() { const int password=123; const string username = "abc"; int pass; string user; cout<< "Enter your username"<<endl; cin>>user; cout<< "Enter your Password"<<endl; cin>>pass; if (pass==password) && (user==username) { cout<< "Access Granted"<<endl; } else{ cout<< "username And Password Incorrect"<<endl; } cout << "Hello world!" …

Member Avatar for zelrick
0
121
Member Avatar for directorabbey

#include <iostream> using namespace std; int main() { const int pin1 = 123; const int accnum1= 23; int pin; int accnum; cout << "Enter Pin" <<endl; cin >> pin; cout << "Enter account number" <<endl; cin >> accnum; if (pin1 == pin) && (accnum1 == accnum) // line 15 { …

Member Avatar for rubberman
0
125
Member Avatar for directorabbey

Hi there daniwebers. Its time for my project work and i want to create an sms based application that will aloow users to donate money to charity which will be used to help people who really need financial assistance. I want to wirte the program using java. But my java …

Member Avatar for llaspina
-1
162