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 |
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
What is the use of bit field?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
What is the size of structure pointer in c?
What are the different types of linkage exist in c?
How can I write functions that take a variable number of arguments?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Explain how can you tell whether a program was compiled using c versus c++?
What will be your course of action for a push operation?
What is the difference between realloc() and free()
What is the main difference between calloc () and malloc ()?
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance