Hi,
main()
{
}

Is a user defined function or Built in Functionn

Answer Posted / neeraj pal

it is user define built in function............becoz user
create the methods in the main,we can change its name in the
c programming only if ,have to change the compiler coding in
which main is defined.

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

main() { printf("hello"); fork(); }

699


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.

1637


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

3506


What is sorting in c plus plus?

568


What is c preprocessor mean?

797






What is the difference between struct and union in C?

580


Where are c variables stored in memory?

601


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

1016


What are the types of data types and explain?

675


Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?

580


How arrays can be passed to a user defined function

581


What is volatile keyword in c?

587


Explain 'far' and 'near' pointers in c.

710


What is an array? What the different types of arrays in c?

662


Why c is a procedural language?

587