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
What is the significance of scope resolution operator?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What is the use of structure padding in c?
Is multithreading possible in c?
Differentiate call by value and call by reference?
What are conditional operators in C?
difference between object file and executable file
How will you delete a node in DLL?
Can a pointer be null?
What are the ways to a null pointer can use in c programming language?
What do you mean by Recursion Function?
Are global variables static in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Which is better oop or procedural?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?