What is structure in c explain with example?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why & is used in scanf in c?

0 Answers  


Explain the bubble sort algorithm.

0 Answers  


How can I sort more data than will fit in memory?

0 Answers  


yogesh patil in dell

3 Answers   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; } }

6 Answers  


Is an array parameter is always "by reference" ?

1 Answers  


Write a program that his output 1 12 123

0 Answers  


Write a program in c to input a 5 digit number and print it in words.

11 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.

0 Answers  


Explain how can I read and write comma-delimited text?

0 Answers  


Describe the difference between = and == symbols in c programming?

0 Answers  


What are the 5 data types?

0 Answers  


Categories