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 |
Explain the use of 'auto' keyword in c programming?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
how to capitalise first letter of each word in a given string?
what is uses of .net
What is local and global variable in c?
Explain what is the purpose of "extern" keyword in a function declaration?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
Ow can I insert or delete a line (or record) in the middle of a file?
What is the use of define in c?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)