Answer Posted / baskar p
C is called a Procedural language because step by step implementation takes place.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How can you increase the size of a dynamically allocated array?
What is array of structure in c?
What should malloc() do?
What is variable initialization and why is it important?
What is sorting in c plus plus?
What is strcmp in c?
What is default value of global variable in c?
What are global variables and how do you declare them?
Who is the main contributor in designing the c language after dennis ritchie?
What are the general description for loop statement and available loop types in c?
What is wrong with this declaration?
write a c program to find the sum of five entered numbers using an array named number
What are the salient features of c languages?
What are the types of operators in c?