What are the two types of functions in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a program to find lcm and hcf of two numbers??

1 Answers  


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

0 Answers  


One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.

0 Answers  


What is difference between union and structure in c?

0 Answers  


a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..

1 Answers  


Explain what is the benefit of using an enum rather than a #define constant?

0 Answers  


What is nested structure with example?

0 Answers  


Write a program to find given number is even or odd without using any control statement.

2 Answers  


What is a sequential access file?

0 Answers  


main is a predefined or user define function if user defined why? if predefined whay?

12 Answers   TCS,


Explain what is a pragma?

0 Answers  


Can i use “int” data type to store the value 32768? Why?

0 Answers  


Categories