User Profile

Collapse

Profile Sidebar

Collapse
yasirassassin
yasirassassin
Last Activity: Dec 7 '11, 04:01 PM
Joined: Nov 2 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • yasirassassin
    replied to ms word 2003 title bar disappeared
    hey dear upload the pic of your office application so that i might see your problem ok
    See more | Go to post

    Leave a comment:


  • yasirassassin
    started a topic output 2d array help
    in C

    output 2d array help

    hey dear i need help in printing 2d array i can take input from user but cannot out put it please help

    #include<iostre am>

    using namespace std;


    int main()
    {int i,j,john[2][3]={{1,2,3},{5,6, 7}};

    for(i=1;i<=2;i+ +){
    for(j=1;j<=3;j+ +){
    cout<<"input value of "<<i<<" and "<<j<<endl;...
    See more | Go to post

  • yasirassassin
    replied to Split number into digits
    in C
    ok how about this one check this out
    #include<iostre am>
    using namespace std;
    int main()
    {
    int x=12345,c=1,n=1 0000,fin;
    while(c<=5){
    fin=x/n;
    n=n/10;
    fin%=10;
    c++;
    cout<<fin<<endl ;
    }
    cout<<endl;
    cin.get();
    return 0;
    }
    See more | Go to post

    Leave a comment:


  • yasirassassin
    replied to Split number into digits
    in C
    well mmm i did this before i read your reply i think i succeeded anyway thanks for reply i'm really grateful to you

    #include<iostre am>
    using namespace std;
    int main()
    {
    int x=12345,c=1,n=1 0000,fin;
    while(c<=5){
    fin=x/n;
    n=n/10;

    c++;
    cout<<fin<<endl ;
    }
    cout<<endl;
    cout<<"at the end here you go "<<fin<<end l;...
    See more | Go to post

    Leave a comment:


  • yasirassassin
    started a topic Split number into digits
    in C

    Split number into digits

    hey sir i am having problem in splitting a number into its digits if i use remainder and division operation then i can split a number and print it in reverse order but dont know how to split that number and print that in correct order
    here is my program

    #include<iostre am>
    using namespace std;
    int main()
    {
    int x=12345,r,c=1;
    while(c<=5){
    r=x%10;
    x=x/10;...
    See more | Go to post

  • program to find second greater and third greater integer

    Hey dear here is a program to find second greater and third greater no i made two functions to get second and third greater no:


    #include<iostre am>
    using namespace std;
    int sec(int x,int y)
    {
    int greater;
    if(x>y)
    greater=x;
    else
    greater=y;
    return greater;...
    See more | Go to post

    Leave a comment:


  • yasirassassin
    started a topic Boot iso from hard disk

    Boot iso from hard disk

    hello sir i wanted to ask you that how can i boot a linux iso from my hard disk i don't want to boot it from usb stick and i don't want to make a cd of my iso either is there a way to solve my prob? thanks in advance please reply
    See more | Go to post
No activity results to display
Show More
Working...