Answer Posted / ramanathan
ANSI = American National Standard Code for Information
Interchange
ISO = International standard Organization
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What is pragma c?
Is main is user defined function?
which type of aspect you want from the student.
Why do we need volatile in c?
What are the application of c?
Is c object oriented?
What are the types of pointers?
How can I automatically locate a programs configuration files in the same directory as the executable?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is the difference between new and malloc functions?
When should the volatile modifier be used?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is class and object in c?
What does void main return?
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.