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);}
Answer Posted / fazlur rahaman naik & praneeth
the answer will b 1.
| Is This Answer Correct ? | 26 Yes | 3 No |
Post New Answer View All Answers
What does dm mean sexually?
How is = symbol different from == symbol in c programming?
given post order,in order construct the corresponding binary tree
What is cohesion and coupling in c?
show how link list can be used to repersent the following polynomial i) 5x+2
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is 2 d array in c?
What are the application of c?
What is pointer to pointer in c with example?
What is a memory leak? How to avoid it?
How do you determine whether to use a stream function or a low-level function?
What is the process to generate random numbers in c programming language?
When can you use a pointer with a function?
write a program to display all prime numbers
How can you increase the size of a dynamically allocated array?