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 / gouse mohiddin
4253
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What is typedef struct in c?
Why main is used in c?
How are structure passing and returning implemented?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Is null always defined as 0(zero)?
What is the equivalent code of the following statement in WHILE LOOP format?
What is structure in c definition?
The difference between printf and fprintf is ?
What is a null pointer in c?
Is it valid to address one element beyond the end of an array?
Where we use clrscr in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.