what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / hari
without entering the values the output will not be
displayed.
no output
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How macro execution is faster than function ?
Is null valid for pointers to functions?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
what is stack , heap ,code segment,and data segment
How are strings stored in c?
What is indirection? How many levels of pointers can you have?
Write a c program to demonstrate character and string constants?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
in linking some of os executables are linking name some of them
what is the difference between 123 and 0123 in c?
Where are local variables stored in c?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Why shouldn’t I start variable names with underscores?
In a header file whether functions are declared or defined?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.