Answer Posted / s.sherlin
c is a structure oriented or procedure oriented language.
c language is top down approach
| Is This Answer Correct ? | 13 Yes | 6 No |
Post New Answer View All Answers
What are conditional operators in C?
What is array in c with example?
How do you view the path?
State the difference between x3 and x[3].
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Write a program to check whether a number is prime or not using c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is far pointer in c?
Are pointers integers in c?
How do I round numbers?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Why we use break in c?
How do we print only part of a string in c?
Explain modulus operator.