What are the two types of functions in c?
write a program to find lcm and hcf of two numbers??
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
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.
What is difference between union and structure in c?
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..
Explain what is the benefit of using an enum rather than a #define constant?
What is nested structure with example?
Write a program to find given number is even or odd without using any control statement.
What is a sequential access file?
main is a predefined or user define function if user defined why? if predefined whay?
Explain what is a pragma?
Can i use “int” data type to store the value 32768? Why?