What is a structural principle?
Answer / Sandeep Kumar Bharti
In software design, a structural principle refers to organizing code into modular and reusable components. Examples include Encapsulation, Abstraction, and Composition.
| Is This Answer Correct ? | 0 Yes | 0 No |
In a header file whether functions are declared or defined?
How can I sort more data than will fit in memory?
how to print a statement in c without use of console statement ,with the help of if statement it should print
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
what is use of loop?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a<b,printb.find the sum digits of that number & then print.if a==b multiply 10 with a & add 20 with b store in c and then print
what is the difference between class and unio?
write a c program to check weather a particluar bit is set or not?
Why static variable is used in c?
What is a memory leak in structures? How can we rectify that?
how to find that no is int or float?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?