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
What is a 'null pointer assignment' error?
What is the code for 3 questions and answer check in VisualBasic.Net?
write a program to display all prime numbers
using for loop sum 2 number of any 4 digit number in c language
What is meant by inheritance?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is malloc calloc and realloc in c?
Is c is a middle level language?
What is the size of enum in bytes?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Do array subscripts always start with zero?
what is a constant pointer in C
How would you rename a function in C?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.