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


Please Help Members By Posting Answers For Below Questions

What is the significance of c program algorithms?

685


Why static is used in c?

627


How do I create a directory? How do I remove a directory (and its contents)?

609


How can I generate floating-point random numbers?

613


Write a program to swap two numbers without using third variable?

819






What is the difference between far and near ?

691


my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

1126


How do we open a binary file in Read/Write mode in C?

685


What is %d used for?

592


What are the types of data structures in c?

606


what do u mean by Direct access files? then can u explain about Direct Access Files?

1647


What is the meaning of ?

628


Where can I get an ansi-compatible lint?

646


what are the advantages of a macro over a function?

650


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

671