live cd ubuntu ask me username

Asked by kuku

I burn ubuntu live cd but I cant use .he asks me user name and pasword.

Question information

Language:
English Edit question
Status:
Answered
For:
Launchpad itself Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
hero vhd (hero-vhd) said :
#1

1 g:\Usb\Blink\stack.cpp
#include "StdAfx.h"
#include ".\stack.h"
#using <mscorlib.dll>
stack::stack(int a)
{
size=a;
top=-1;
Array=new int[size];
}
stack::stack(stack &a)
{
size=a.size;
top=a.top;
for(int i=0;i<size;i++)
{
Array[i]=a.Array[i];
}
Array=new int[size];
}
stack::~stack(void)
{}
void stack::Push(int num)
{
if(isfull())
{
MessageBox::Show("Your stack is Full...!\n ");
}
else
{
top++;
Array[top]=num;
MessageBox::Show("Your Data is add..!");
}
}
bool stack::isfull(void)
{
if(top==size)
{
return true;
}
else
{
return false;
}
}
\\ has problemERROR:::::::

 g:\Usb\Blink\stack.cpp fatal error C1084: Cannot read CLR runtime data file: 'j:\usb\blink\debug\stdafx.obj': <Unknown>

Can you help with this problem?

Provide an answer of your own, or ask kuku for more information if necessary.

To post a message you must log in.