names[3] = names[4]; //Cant be done like these as they are char arrays....

On Mon, Jun 4, 2012 at 4:12 AM, mahendra sengar <sengar.m...@gmail.com>wrote:

>  main()
> {
> static char names[5][20]={"pascal","ada","cobol","fortran","perl"};
> int i;
> char *t;
> t=names[3];
> names[3]=names[4];
> names[4]=t;
> for (i=0;i<=4;i++)
> printf("%s",names[i]);
> }
>
> --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
>


-- 
Thanks & Regards,
M.V.Raghavendhra Chowdary.

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to