what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / sundar
what input to give that number can display
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
Why do we use main function?
What is the purpose of main( ) in c language?
How to Throw some light on the splay trees?
What is a built-in function in C?
What are pointers?
Explain a file operation in C with an example.
What is adt in c programming?
Mention four important string handling functions in c languages .
Explain what is the difference between far and near ?
What is queue in c?
When should the register modifier be used? Does it really help?
What is NULL pointer?
Describe static function with its usage?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is an lvalue in c?