Answer Posted / musharaf ali
every program start from the main function whatever main is defined anywhere in program.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are external variables in c?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Are the variables argc and argv are local to main?
Describe the difference between = and == symbols in c programming?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Explain how do you determine the length of a string value that was stored in a variable?
Why header file is used in c?
What is abstract data structure in c?
all c language question
What is function prototype in c with example?
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
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
How can I ensure that integer arithmetic doesnt overflow?
What is memory leak in c?
What is multidimensional arrays