hi any body pls give me company name interview conduct "c"
language only
No Answer is Posted For this Question
Be the First to Post Answer
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
How can I write a function that takes a format string and a variable number of arguments?
How can we allocate array or structure bigger than 64kb?
What is the difference between typedef and #define?
What is selection sort in c?
What happens if you free a pointer twice?
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.
c program to manipulate x=1+3+5+...+n using recursion
How can I implement a delay, or time a users response, with sub-second resolution?
how to write a bubble sort program without using temporary variable?
What are structure members?