main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / guruprasad
first a[0]=23;
a[1]=67;
rest index are assigned 0 0 0.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Differentiate between the = symbol and == symbol?
What is %g in c?
Explain what are its uses in c programming?
What is %d called in c?
What are the advantages of external class?
What is a const pointer in c?
Is c procedural or object oriented?
Write a program with dynamically allocation of variable.
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Differentiate between calloc and malloc.
What does %d do in c?
Explain what is the concatenation operator?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
How to set file pointer to beginning c?
What does typeof return in c?