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 |
What is an volatile variable?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
write a program to insert an element at the specified position in the given array in c language
what is c language.
define function
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What are the types of unary operators?
Explain what are reserved words?
What is static memory allocation?
What is structure in c explain with example?
difference between string and array?
What is the purpose of 'register' keyword?