Answer Posted / smily
c is a standard programming language..which is the base for
all other programming languages, but as no security...
| Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
Is stack a keyword in c?
Are local variables initialized to zero by default in c?
What are the back slash character constants or escape sequence charactersavailable in c?
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 array of structure in c programming?
Why can’t we compare structures?
define string ?
What is a macro in c preprocessor?
Explain the use of 'auto' keyword in c programming?
What is sizeof array in c?
Are negative numbers true in c?
What are the two forms of #include directive?
c program to compute AREA under integral
How many levels deep can include files be nested?
What are the advantages of the functions?