Answer Posted / vignesh1988i
this line will work.... first the value of i will be in the array and then i will get incremented
| Is This Answer Correct ? | 11 Yes | 18 No |
Post New Answer View All Answers
List out few of the applications that make use of Multilinked Structures?
How many header files are in c?
Explain modulus operator. What are the restrictions of a modulus operator?
Explain what is gets() function?
How do you declare a variable that will hold string values?
Can you write the function prototype, definition and mention the other requirements.
What are the primitive data types in c?
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); } }
What happens if header file is included twice?
Write a program to print ASCII code for a given digit.
What is structure in c definition?
What is the code in while loop that returns the output of given code?
What is a structure member in c?
Why #include is used in c language?
how should functions be apportioned among source files?