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 |
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
what is difference between overriding and overloading?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
What is string concatenation in c?
WHAT IS LOW LEVEL LANGUAGE?
How do I get a null pointer in my programs?
write a program to interchange the value between two variable without using loop
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What is information technology.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
Explain the red-black trees?