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
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What are local variables c?
can we change the default calling convention in c if yes than how.........?
Can you return null in c?
What are the 5 elements of structure?
How can I implement a delay, or time a users response, with sub-second resolution?
How macro execution is faster than function ?
How can I get random integers in a certain range?
What is an endless loop?
What are types of structure?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What are the advantages and disadvantages of c language?