what is diff b/w huge & far & near pointer??
Answer / mani
far pinters are of 32 bits n near pointers are of 16 bits
| Is This Answer Correct ? | 7 Yes | 0 No |
How can I call fortran?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is an auto keyword in c?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
What is const and volatile in c?
What is the advantage of an array over individual variables?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
write a progam to display the factors of a given number and disply how many prime numbers are there?
Tell us bitwise shift operators?
Identify the operators that is not used with pointer a. && b. # c. * d. >>