Explain what does a function declared as pascal do differently?
Answer / Niraj Singh
A Pascal function behaves differently than C functions because it requires the number of arguments to match exactly when called, and it also automatically returns the value using special registers instead of using explicit return statements.
| Is This Answer Correct ? | 0 Yes | 0 No |
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What is floating point constants?
Can a file other than a .h file be included with #include?
Explain how do you sort filenames in a directory?
what is the difference between char * const and const char *?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
What does the format %10.2 mean when included in a printf statement?
How do you write a program which produces its own source code as output?
write a c program to find biggest of 3 number without relational operator?
Can one function call another?
What are the 3 types of structures?
What is the value of c?