how to find turn around time in operating system?
Answers were Sorted based on User's Feedback
Answer / guest
Mean time from submission to completion of process.
| Is This Answer Correct ? | 22 Yes | 3 No |
Answer / hemal patel ( b.c.a )
The Interval from the time of submission of a process to the
time of completion is the TURN AROUND time
| Is This Answer Correct ? | 11 Yes | 1 No |
write a program without using main function?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
How do you print only part of a string?
What are the advantages of c preprocessor?
wap in c to accept n number display the highest and lowest value
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
What is the explanation for the dangling pointer in c?
write a program wch produces its own source code aas its output?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What is the general form of #line preprocessor?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What is a const pointer, and how does it differ from a pointer to a const?