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 |
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
How can I find out if there are characters available for reading?
What are global variables?
what type of language is C?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
What are shell structures used for?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
What are actual arguments?
write a program which counts a product of array elements lower than 10.
how can i sort numbers from ascending order and descending order using turbo c..
What is meant by recursion?