main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / gowtham
complier error
| Is This Answer Correct ? | 13 Yes | 14 No |
Post New Answer View All Answers
What is hashing in c?
Write a program to check armstrong number in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is difference between static and global variable in c?
What is build process in c?
Write program to remove duplicate in an array?
What is the difference between ++a and a++?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain how are portions of a program disabled in demo versions?
Can you assign a different address to an array tag?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Why clrscr is used in c?
Write a simple code fragment that will check if a number is positive or negative.
Can include files be nested? How many levels deep can include files be nested?
Write a code on reverse string and its complexity.