How can you find out how much memory is available?
No Answer is Posted For this Question
Be the First to Post Answer
what is the syallabus of computer science students in group- 1?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
number of times a digit is present in a number
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
Does c have circular shift operators?
Can stdout be forced to print somewhere other than the screen?
biggest of two no's with out using if condition statement
the operator for exponencation is a.** b.^ c.% d.not available
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
What is a string?
Why is C called a middle-level language?