HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
No Answer is Posted For this Question
Be the First to Post Answer
WAP – represent a char in binary format
How to find the usage of memory in a c program
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What is variable and explain rules to declare variable in c?
What is the meaning of int *x[]();?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
How do you sort filenames in a directory?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
difference of two no's with out using - operator
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
What is void c?