what is an ERP?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / divya
ERP stands for enterprise resource planning. It integrates
all the departments to an organization into a single
centralized system.
| Is This Answer Correct ? | 0 Yes | 1 No |
What are structure types in C?
question-how to run a c programme.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain enumerated types.
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Do pointers take up memory?
write a program of palindrome(madam=madam) using pointer?
Program to write some contents into a file using file operations with proper error messages.
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
difference between the array and linked list general difference related to memory
What is difference between class and structure?