Answer Posted / jalal
c)=
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is storage class?
What are the different types of endless loops?
What is scanf_s in c?
What does the file stdio.h contain?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is the scope of global variable in c?
Which is best linux os?
What are the advantages and disadvantages of c language?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Why static is used in c?
If I have a char * variable pointing to the name of a function ..
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is pointer & why it is used?