4)What would be the output?
main()
{
int num=425;
pf("%d",pf("%d",num));
}
a)Comp error
b)4425
c)4253
d)3435
e)none
Answer Posted / ar ind,faisal,jitendra
4253 bcoz printf always return no of chracters inside its()
so it become 4253
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
When c language was developed?
What are enums in c?
write a program to find out prime number using sieve case?
Tell us two differences between new () and malloc ()?
Describe wild pointers in c?
What is the stack in c?
i have a written test for microland please give me test pattern
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What are the general description for loop statement and available loop types in c?
How can I discover how many arguments a function was actually called with?
Describe explain how arrays can be passed to a user defined function
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is strcpy() function?
How can I change the size of the dynamically allocated array?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above