Answer Posted / dhanshri chabukswar
#include means "bring in this file's code before compiling"....
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Write a code to generate divisors of an integer?
What is the -> in c?
What are external variables in c?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
How many bytes are occupied by near, far and huge pointers (dos)?
write an algorithm to display a square matrix.
Which is best book for data structures in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What does malloc () calloc () realloc () free () do?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What are pragmas and what are they good for?
What does %d do?
What are near, far and huge pointers?
Give differences between - new and malloc() , delete and free() ?