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 |
What is static memory allocation? Explain
4. main() { int c=- -2; printf("c=%d",c); }
Can you please explain the difference between strcpy() and memcpy() function?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
What is a structure in c language. how to initialise a structure in c?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
Differentiate between #include<...> and #include '...'
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
Explain why C language is procedural?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What are the different properties of variable number of arguments?
What is a pointer in c plus plus?