User Profile

Collapse

Profile Sidebar

Collapse
nbras
nbras
Last Activity: Nov 5 '06, 06:54 PM
Joined: Oct 29 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • nbras
    replied to header file
    in C
    it's contains
    1. include librarys
    2. prototypes of your functions in cpp file
    you can see this

    http://www.doc.ic.ac.u k/lab/secondyear/cstyle/node5.html

    and this is an example

    #include<iostre am>
    #include<ctime>
    #include<cstrin g>
    #include<iomani p>

    using namespace std;


    int add(int[][6],char [][10],char[][10],char...
    See more | Go to post

    Leave a comment:


  • hi!
    could you upload your file or send it to my e-mail alnbras@gmail.c om

    I can't understand your code completely...

    I hope I can help u
    See more | Go to post

    Leave a comment:


  • nbras
    replied to cannot get the output
    in C
    h! man

    don't warry about that !
    can you tel me which compile do you use ?

    you can send to e-mail a_z_0@hotmail.c om
    PS
    use cin>> in the last of your program
    See more | Go to post

    Leave a comment:


  • nbras
    replied to Help with a program that makes a square
    in C
    hi !

    this is very easy

    please try to use this code
    Code:
    int size;
    	cout<<"Please enter the size of a square:"<<endl;
    	cin>>size;
    	for(int i=0;i<size;i++)
    	{
    		cout<<endl;
    	for(int j=0;j<size;j++)
    	{
    		if(i==0||i==size-1)
    			cout<<"*";
    		else
    			if(j==0||j==size-1)
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...