f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?

Answer Posted / xx

no output

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the differences between new and malloc in C?

797


Explain how can a program be made to print the line number where an error occurs?

924


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

988


What is the need of structure in c?

774


List some of the static data structures in C?

952


Write a program to implement queue.

862


What is wrong with this statement? Myname = 'robin';

1040


What are # preprocessor operator in c?

846


Explain what are bus errors, memory faults, and core dumps?

1011


Define and explain about ! Operator?

778


What is operator promotion?

808


What is the difference between ++a and a++?

928


What is a null pointer in c?

821


write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.

2639


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

835