Tampilkan postingan dengan label structure. Tampilkan semua postingan
Tampilkan postingan dengan label structure. Tampilkan semua postingan

Flag Structure Design

Q. Write a C program to print the following flag design as:

 * * * * * * * * *
 * * * *
 * * * *
 * * * *
 * *
 * * * *
 * * * *
 * * * *
 * * * * * * * * *

Ans.

/*c program for flag design*/
#include<stdio.h>
int main()
{

 int num=7,r,c;
 for(c=1; c<=9; c++)
    printf(" *");
 printf("
"
);

 for(r=1; r<=num; r++)
 {
  if(r==4)
  {
    for(c=1; c<=2; c++)
       printf(" *");
  }
  else
  {
    for(c=1; c<=4; c++)
       printf(" *");
  }
  printf("
"
);

 }
 for(c=1; c<=9; c++)
    printf(" *");
 getch();
 return 0;
}

/**************************************************************
The output of above program would be:
***************************************************************/


Output of Flag Structure Design C program
Figure: Screen shot for flag-structure-design C program


Read More..

Tekla Structure Integration into Analysis Softwares

Tekla Structure Integration with Different Structure Analysis Softwares

Integration between Tekla Structures and STAAD improve the workflow in the design phase at engineering
offices. The modeling of the physical structure starts in Tekla Structures, whereas the engineer will achieve an
understanding about how the structure is put together. With loads, support conditions and other analysis
properties set up in Tekla Structures, the model can then be analyzed in STAAD. After analysis in STAAD, the data results, for example section property changes are automatically integrated back into Tekla Structures model.As project changes occur, the updated Tekla Structures model can be re-analyzed and incorporated into STAAD at any time, while changes from STAAD can re-update the Tekla model and engineering drawings.The integration between Tekla Structures and STAAD is done through standard Open Application Programming Interfaces (API) that enables roundtrip functionality and good maintainability of the integrated workflow.

Download

http://www.4shared.com/office/E0NyNAkA/Tekla_Structure_analysis__desi.html
Read More..