HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
No Answer is Posted For this Question
Be the First to Post Answer
Whats s or c mean?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
Which programming language is best for getting job 2020?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
Do you know the difference between malloc() and calloc() function?
Prove or disprove P!=NP.
Why void main is used in c?
3.write a simple program that will output your name,phone number,e-mail address,and academic major on separate lines 1.create an account and a personal directory for your work b.find out how to create a subdirectory on your system.create one called info c.you will use a text editor to type in your programs and data files.some C systems have a built in text editor;others do not.Find out what text editor you will be using and how to access it.create a text file(not a program) containing your name ,address,and telephone number on separate lines.Next,write the brand of computer you are using and the name of the text editor.Then write a paragraph that describes your past experience with computers.save this file in your info directory. d. find out how to print a file on your system .print out and turn in the file you created in (c).
What are local variables c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion