Is main() function predfined or userdefined?
Answers were Sorted based on User's Feedback
main() is a predefined function because compiler starts
executing only in main() function. It better to press F7
function key after compiling your program because the
control first passes only to main() function
| Is This Answer Correct ? | 0 Yes | 7 No |
Is python a c language?
How can we open a file in Binary mode and Text mode?what is the difference?
what is reason of your company position's in india no. 1.
Tell me the use of bit field in c language?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
Why does everyone say not to use scanf? What should I use instead?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
IS Doon college of Engn.. has good faculty
What is static memory allocation?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }