write a c program to find the sum of five entered numbers
using an array named number
No Answer is Posted For this Question
Be the First to Post Answer
difference between object file and executable file
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
What do you understand by friend-functions? How are they used?
Why main function is special give two reasons?
What is the difference between text and binary modes?
what is the difference between global variable & static variable declared out side all the function in the file.
What are static variables in c?
Write a program to swap two numbers without using third variable?
What is void c?
wat s the meaning of (int *)p +4;
What are the advantages of c preprocessor?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);