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
Why is c so popular?
How do you redirect a standard stream?
What are the characteristics of arrays in c?
Why do we use header files in c?
What is an lvalue in c?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What is the explanation for modular programming?
What does != Mean in c?
What is build process in c?
What is the difference between near, far and huge pointers?
Why doesnt this code work?
Is null a keyword in c?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer