What is structure in c explain with example?
Why & is used in scanf in c?
Explain the bubble sort algorithm.
How can I sort more data than will fit in memory?
yogesh patil in dell
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; } }
Is an array parameter is always "by reference" ?
Write a program that his output 1 12 123
Write a program in c to input a 5 digit number and print it in words.
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.
Explain how can I read and write comma-delimited text?
Describe the difference between = and == symbols in c programming?
What are the 5 data types?