How can you return multiple values from a function?
No Answer is Posted For this Question
Be the First to Post Answer
In CMM or CMMI certified organizations,we assess only the standard software processes of the organization. We do not assess the organizations other functional departments like HR or Admin. Then how can we certify the entire organization as CMM level company?? We have assessed only software related activities. Right. There is no relation with other departments like Accounts, HR or Admin. Then how can we claim that the whole company is a CMM certified company?
Explain what are header files and explain what are its uses in c programming?
What is extern storage class in c?
Explain what are the advantages and disadvantages of a heap?
What is the difference between File pointer and Internal Charecter Pointer?
Given an unsigned integer, find if the number is power of 2?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Write a program to implement queue.
Are there namespaces in c?