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 the format specifier for printing a pointer value?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
How do I use void main?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
different between overloading and overriding
write a c program to convert fahrenheit to celsius?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Where does the name "C" come from, anyway?
how many times of error occur in C
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
What is the difference between constant pointer and pointer to a constant. Give examples.
Taking an example,differentiate b/w loader and linker ?