main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / anusha raykar
Please dont answer with blind mind.
Answer is= 3
100%
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How can you increase the size of a statically allocated array?
Explain what is the purpose of "extern" keyword in a function declaration?
What is the purpose of realloc()?
#include
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Explain how do you print only part of a string?
What are comments and how do you insert it in a C program?
What is const keyword in c?
What is pointer to pointer in c language?
What is #include cctype?
What is the difference between printf and scanf )?
Is it better to use a macro or a function?
What does it mean when the linker says that _end is undefined?
What are Macros? What are its advantages and disadvantages?
What are the rules for identifiers in c?