Is c functional or procedural?
Answer / baskar p
C is called a Procedural language because step by step implementation takes place.
| Is This Answer Correct ? | 0 Yes | 0 No |
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is calloc in c?
Describe the header file and its usage in c programming?
explain about storage of union elements.
What is the role of && operator in a program code?
How do I read the arrow keys? What about function keys?
What are enums in c?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
How do you list files in a directory?
What does a pointer variable always consist of?
What is anagram in c?
What is malloc return c?