which do you prefer C or Pascal?
Answer / pooja chugh
c is written in high level while pascal is written in low
level like assembly language but the speed & execution of
assembly language is very faster so a normal user can't
understand it.therefore,we will prefer c for coding
| Is This Answer Correct ? | 7 Yes | 0 No |
Difference between Function to pointer and pointer to function
How can I invoke another program or command and trap its output?
Explain about block scope in c?
what is the difference between c and java?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What header files do I need in order to define the standard library functions I use?
What is variable declaration and definition in c?
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?