we all know about the function overloading concept used in
C++ and we all learnt abt that.... but that concept is
already came in C in a very smaller propotion ... my
question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION
OVERLOADING IS USED in C language?????????????
Answer Posted / venkatesh
In c also we are allowed to function overloading with
parameters wherever we like.
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What does int main () mean?
What are global variables and how do you declare them?
What are operators in c?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are linked lists in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
How can I call fortran?
Process by which one bit pattern in to another by bit wise operation is?
What is file in c language?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is ## preprocessor operator in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
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.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What do mean by network ?