main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}

Answer Posted / amalu

32

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the full form of getch?

580


What is a void pointer in c?

602


Can we access the array using a pointer in c language?

556


What is the use of header files?

598


What is the total generic pointer type?

722






What is difference between structure and union?

593


What is the difference between char array and char pointer?

525


What is pass by value in c?

593


How can I read in an object file and jump to locations in it?

573


What is bubble sort technique in c?

586


What is openmp in c?

608


what is bit rate & baud rate? plz give wave forms

1512


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.

1626


Explain the ternary tree?

597


What is the right type to use for boolean values in c? Is there a standard type?

557