• anusha p 6
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 0
    Replies
list<contact> conlist=new list<contact>();
for(integer j=0;j<10;j++);
{
    contact con=new contact();
    con.lastname='contact'+j;
    con.title='anu info';
    conlist.add(con);
}
insert conlist;




invalid integer j . 

can any one plz give me the reply..
thank you.