answersLogoWhite

0


Best Answer

Old:

function (par1, par2)

int par1;

char *par2;

{...}

New:

int function (int par1, char *par2)

{...}

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is style of function is not obsolete in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you use getpass in C?

This function is obsolete. Do not use it.


What is the differnce between ordinary function and template function of c language?

The c language does not have template functions. That is a c++ thing.


Call by function in c language?

I guess you meant the following:'In C language, when you call a function,the parameters are passed by-value.'


What are the library function in c language?

libray in c++


Are turbo c and c language the same?

Not necessarily. You would need to look at conformance level, particularly since Turbo C is obsolete.


What are the hearing rods for identifier 'c' language?

The hearing rods for identifier "c" language is the function.


What is function of brack in c language?

Nothing.


Is combination a library function in c language of programming?

No.


Why Clearscreen in c language is used?

'Clearscreen' is not used in C language. TurboC has a clrscr function (prototype in conio.h).


Can you write any c prigramme in c language witthout any function?

No. At minimum, you need to provide a main() function.


Why you use 'integer' before function in C language?

To specify the return-type of the function.


What function is used to perform exponentiation in C language?

You can use the pow() function in math.h.