Answer Posted / salini
for fractional values
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Can i use “int” data type to store the value 32768? Why?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
write a program to copy the string using switch case?
Explain how can I manipulate strings of multibyte characters?
C program to find all possible outcomes of a dice?
How a string is stored in c?
How to write a code for reverse of string without using string functions?
Explain the process of converting a Tree into a Binary Tree.
What is volatile, register definition in C
What is the difference between text and binary modes?
Write a program to check whether a number is prime or not using c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Is there any demerits of using pointer?