![]() |
Clarification
In C programs we print array elements like
printf("Elements of array a[%d] = %d",i,a[i]); I want to know how print like above mentioned type in cpp. Because this type will not work in cpp. cout<<"a[%d] "<<i<<a[i]; This will not work to print like in c. Then any other way is there. |
Re: Clarification
Write it out the long way
Code:
cout << "a[" << i << "]" |
| All times are GMT +5.5. The time now is 23:02. |