What are the benefits of organizational structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is typedef struct in c?
what is difference between declaring the pointer as int and char in c language?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
I heard that you have to include stdio.h before calling printf. Why?
Which of these functions is safer to use : fgets(), gets()? Why?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Can include files be nested? How many levels deep can include files be nested?
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?
How does variable declaration affect memory?
how can write all 1to 100 prime numbers using for loop,if and break ?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
What is an anonymous union and where to apply that ?