what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / satish kondapalli
2 2
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Explain the difference between null pointer and void pointer.
Write a program to print fibonacci series without using recursion?
What is stack in c?
What is the purpose of realloc()?
Differentiate between null and void pointers.
What are 3 types of structures?
What does double pointer mean in c?
write a program to copy the string using switch case?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain the use of #pragma exit?
Differentiate between calloc and malloc.
What is the sizeof () a pointer?
What are structure types in C?
What is the purpose of 'register' keyword?