SRUCTURE PROGRAMMING
Answers were Sorted based on User's Feedback
Answer / ms kumar
In c the program will divided into different functions.it
useful whenever u need to update a particular part .
| Is This Answer Correct ? | 22 Yes | 1 No |
Answer / hemanthkumar
in c language the way of code writing is mandatory
u must write the program in a specific way
ex;
#include<stdio.h>
main()
{
//declarations
//functions
}
| Is This Answer Correct ? | 14 Yes | 1 No |
Answer / anil kumar
Structure Programing means that type of language which is
based on structure it means all codding is done under main
function and when we want to change the functionality of
that programme then we have to change all functionality of
program.ex of it is c,COBOL etc
| Is This Answer Correct ? | 8 Yes | 2 No |
Explain what math functions are available for integers? For floating point?
can we print any string without using terminator?
What is #line used for?
What is merge sort in c?
What is I ++ in c programming?
Is it possible to run using programming C for Java Application?
how to TOGGLE Nth bit of variable in a MACRO
What is the use of the sizeof operator?
What is %d used for?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
What is wrong with this program statement?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }