what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / makadivya
10
| Is This Answer Correct ? | 14 Yes | 22 No |
Post New Answer View All Answers
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the difference between strcpy() and memcpy() function in c programming?
What is || operator and how does it function in a program?
Explain how can I read and write comma-delimited text?
Why is main function so important?
Can a pointer point to null?
How can you read a directory in a C program?
What does 3 mean in texting?
Are global variables static in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain what header files do I need in order to define the standard library functions I use?
What are control structures? What are the different types?
hi any body pls give me company name interview conduct "c" language only
What is far pointer in c?
Define and explain about ! Operator?