hi can any one know how to program in c++ the *143# in globe all iknow is u can use if else conditional statement!! tnx in advance

Recommended Answers

All 6 Replies

cout << "*143#" << endl;

aw not that kind of programing

aw not that kind of programing

If you don't like streams, calling printf("*143#\n"); from within C++ is valid, so long as you include stdio.h

well heres the output first u must enter *143# and then ther should be 5sec deley after that choices will be shown

Sorry, but we don't do your homework for you. Show your code, and be more clear about what the intention may be. Your last comment was better, but you need to be more complete.

Hi buddy this may be helpful try this piece of code

string str;
cout<<"enter *143# \n";
cin>>str;
sleep(5000);
cout<<str;

output:
enter *143#
*143#(after 5 secs)
*143#

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.