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 / ravinderreddy
1 only
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What is difference between %d and %i in c?
What is the general form of function in c?
What is p in text message?
Why is void main used?
What is time null in c?
What are the different types of constants?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Explain argument and its types.
How do I use strcmp?
Write a program to reverse a string.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the translation phases used in c language?
How main function is called in c?
When is the “void” keyword used in a function?
Explain what will the preprocessor do for a program?