Explain what does a function declared as pascal do differently?



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

Post New Answer

More C Interview Questions

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.

1 Answers  


What is floating point constants?

1 Answers  


Can a file other than a .h file be included with #include?

1 Answers   Aspire, Infogain,


Explain how do you sort filenames in a directory?

1 Answers  


what is the difference between char * const and const char *?

2 Answers   TCS,


int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?

15 Answers   Mascot,


What does the format %10.2 mean when included in a printf statement?

1 Answers  


How do you write a program which produces its own source code as output?

1 Answers  


write a c program to find biggest of 3 number without relational operator?

12 Answers   TCS, Wipro,


Can one function call another?

1 Answers  


What are the 3 types of structures?

1 Answers  


What is the value of c?

1 Answers  


Categories