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 malloc() function?
Mention four important string handling functions in c languages .
What is signed and unsigned?
What is function definition in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What do you mean by a sequential access file?
What is a void pointer in c?
Explain goto?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
Is c object oriented?
Explain about C function prototype?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
List a few unconditional control statement in c.
Explain what is a pragma?
Can we declare variables anywhere in c?