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
Explain how does flowchart help in writing a program?
What is data type long in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Can variables be declared anywhere in c?
What is character set?
Explain how can I pad a string to a known length?
Explain what is the difference between null and nul?
What is FIFO?
What is size of union in c?
Is c is a low level language?
Explain what is a program flowchart and explain how does it help in writing a program?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What are dangling pointers? How are dangling pointers different from memory leaks?
What is pre-emptive data structure and explain it with example?