Answer Posted / sumit kumar
Take the input 5 from keyword :-
#include<stdio.h>
main()
{
int num,pos;
printf("enter the no.:");
scanf("%d",&num);
printf("enter the position:");
scanf("%d",&pos);
if(num & (1<<pos))
{
printf("pos is set");
}
else
{
printf("pos is not set");
}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 ā¦). Records the times. c). Do an analysis of the differences in times and submit it in class.
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What are the 5 types of inheritance in c ++?
How do you view the path?
Explain do array subscripts always start with zero?
Write a program to swap two numbers without using third variable in c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What is the difference between NULL and NUL?
What is a macro?
What does s c mean in text?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Are there constructors in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.