2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / vignesh1988i
x will be 36....
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
using only #include
Explain the bubble sort algorithm.
What is include directive in c?
What is double pointer?
int i=10; printf("%d %d %d", i, i=20, i);
What is the size of a union variable?
What is New modifiers?
How can I write functions that take a variable number of arguments?
Describe the modifier in c?
What is calloc() function?
Why is c so powerful?
What are the keywords in c?
Are comments included during the compilation stage and placed in the EXE file as well?
Explain union. What are its advantages?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.