main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / raj
3 is correct answer
| Is This Answer Correct ? | 24 Yes | 7 No |
Post New Answer View All Answers
What is the use of function in c?
what is the height of tree if leaf node is at level 3. please explain
Sir i need notes for structure,functions,pointers in c language can you help me please
What are valid operations on pointers?
Give basis knowledge of web designing ...
What is keyword in c?
What is volatile, register definition in C
Differentiate between null and void pointers.
why return type of main is not necessary in linux
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
State two uses of pointers in C?
Write a program to swap two numbers without using third variable in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Write a C program in Fibonacci series.
Define recursion in c.