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
What are the differences between new and malloc in C?
Explain how can a program be made to print the line number where an error occurs?
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
What is the need of structure in c?
List some of the static data structures in C?
Write a program to implement queue.
What is wrong with this statement? Myname = 'robin';
What are # preprocessor operator in c?
Explain what are bus errors, memory faults, and core dumps?
Define and explain about ! Operator?
What is operator promotion?
What is the difference between ++a and a++?
What is a null pointer in c?
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.
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);