Answer Posted / ravi
It stands for Enterprise Resource Planning. It is a system
that is used to manage and coordinate all the resources,
information and functions of a business.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Do string constants represent numerical values?
how do you programme Carrier Sense Multiple Access
What is sizeof c?
What does sizeof int return?
Define and explain about ! Operator?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
If null and 0 are equivalent as null pointer constants, which should I use?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Write a program of advanced Fibonacci series.
What is #line?
What is a function in c?
Explain threaded binary trees?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What are the features of c language?
Are comments included during the compilation stage and placed in the EXE file as well?