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 |
How do you determine if a string is a palindrome?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
Why c is known as a mother language?
What happens if header file is included twice?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
what is the use of a array in c
How can I split up a string into whitespace-separated fields?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
How does #define work?
how to find the largest element of array without using relational operater?