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 / ajay lakhara
a)comp error
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the purpose of & in scanf?
What is output redirection?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
How can I recover the file name given an open stream or file descriptor?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is the purpose of 'register' keyword in c language?
What are reserved words?
Explain pointers in c programming?
what is the significance of static storage class specifier?
Is malloc memset faster than calloc?
c language interview questions & answer
What is omp_num_threads?
What is the use of printf() and scanf() functions?