main is a predefined or user define function
if user defined why?
if predefined whay?
Answer Posted / chitaranjan barik
Main() is a predefined
function,because it's
prototype,call function,
returning val -all these
parameters only kown
to compile,not to
user.but we can use it
as user defined by
specifying our own
parameter
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Why is %d used in c?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Do variables need to be initialized?
How is a null pointer different from a dangling pointer?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
is it possible to create your own header files?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What is adt in c programming?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Why is this loop always executing once?
Why #include is used in c language?
Why we use conio h in c?
What is wild pointer in c with example?
write a proram to reverse the string using switch case?
What functions are used for dynamic memory allocation in c language?