what does the following function print?
func(int i)
{
if(i%2)return 0;
eale return 1;
}
main()
{
int =3;
i=func(i);
i=func(i);
printf("%d",i);}
Post New Answer View All Answers
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What will be the outcome of the following conditional statement if the value of variable s is 10?
Explain how are 16- and 32-bit numbers stored?
Which are low level languages?
What are the application of void data type in c?
What’s the special use of UNIONS?
What is the purpose of realloc()?
What is use of null pointer in c?
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
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
How are portions of a program disabled in demo versions?
Differentiate between Macro and ordinary definition.
What are the basic data types associated with c?
What is %d used for?
What is boolean in c?