BZU PAGES: Find Presentations, Reports, Student's Assignments and Daily Discussion; Bahauddin Zakariya University Multan Right Header

HOME BZU Mail Box Online Games Radio and TV Cricket All Albums
Go Back   BZU PAGES: Find Presentations, Reports, Student's Assignments and Daily Discussion; Bahauddin Zakariya University Multan > Institute of Computing > Bachelor of Science in Information Technology > BsIT 3rd Semester > Data Structure

Data Structure Lectures by Sir Ahsan..


Reply
 
Thread Tools Search this Thread Rating: Thread Rating: 4 votes, 5.00 average. Display Modes
  #1  
Old 02-09-2008, 05:51 AM
BSIT07-01's Avatar
Addicted to Computer


 
Join Date: Sep 2007
Location: ------------
Age: 34
Posts: 1,309
Contact Number: ---------------
Program / Discipline: BSIT
Class Roll Number: 07-01
BSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant future
Default [C++] Programme to display an email address before @ sign

The simple One
Code:
#include <iostream>
using namespace std;

char email[20];
string output;
int index;

int main()

{
    index=0;
    cout<<"please enter and email address : ";
    cin>>email;

    while(email[index]!='@')
    {
        
        
        
        cout<<email[index];
        index++;

    }
    cout<<endl;

    return 0;
}
An extended One

Code:
#include <iostream>
using namespace std;

char email[20];
char output[20];
int index;

int main()

{
    index=0;
    cout<<"please enter and email address : ";
    cin>>email;

    while(email[index]!='@')
    {
        
        output[index]=email[index];
        index++;

    }
    
    output[index]='\0';
    cout<<"Email Address Before @ sign is "<<output<<endl;






    return 0;
}

Reply With Quote
Reply

Tags
address, assignment, c++, display, email, programme, sign


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
A Family Email .BZU. Funny Cut Piece 3 05-11-2010 11:40 AM
What your E-mail Address Say: Raheel Quotes 0 13-07-2010 12:55 PM
An Email to Husband momna gull Quotes 1 19-05-2010 05:05 PM
How to hack ip address usman_latif_ch Articles 0 03-08-2009 07:04 PM
IP Address Detection BSIT07-01 Chit Chat 3 08-05-2008 06:46 AM

Best view in Firefox
Almuslimeen.info | BZU Multan | Dedicated server hosting
Note: All trademarks and copyrights held by respective owners. We will take action against any copyright violation if it is proved to us.

All times are GMT +5. The time now is 05:26 AM.
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.