main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / abhisheksingh462
000
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Where is c used?
Do you have any idea how to compare array with pointer in c?
what do the 'c' and 'v' in argc and argv stand for?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Can a variable be both const and volatile?
Explain continue keyword in c
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Is c language still used?
Write a program to print fibonacci series without using recursion?
Is there a way to switch on strings?
How can you find the exact size of a data type in c?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is a null pointer in c?
What is the use of c language in real life?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?