User Profile

Collapse

Profile Sidebar

Collapse
nazimhussain
nazimhussain
Last Activity: Nov 29 '17, 05:20 PM
Joined: Nov 29 '17
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • nazimhussain
    replied to Detect all the possible errors in C++ code
    in C
    Coupling refers to how many dependencies there are between modules and the nature of the links. Based on the nature of dependency, there are different type of coupling like data coupling, stamp coupling, content coupling and control coupling etc. You are required to identify the type of coupling that the following statements represent. Justify your answer with solid reason.
    i. Module A ``branches'' or ``falls through'' into Module B (by containing...
    See more | Go to post

    Leave a comment:


  • nazimhussain
    started a topic Detect all the possible errors in C++ code
    in C

    Detect all the possible errors in C++ code

    1. #include <iostream>
    2. using namespace std;

    3. void generateTable(i nt x, int y){
    4. int result = y / x;

    5. for(int i = 1; i <= 10; i++){
    6. cout<<result<<" * "<<i<<" = "<<i*result<<en dl;
    7. }
    8. }

    9. main(){
    10. int found;
    11. int data[10];
    12. for(int i = 0; i < 10; i++){...
    See more | Go to post
No activity results to display
Show More
Working...