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
Give the rules for variable declaration?
What is a list in c?
Do pointers take up memory?
Tell me about low level programming languages.
What is the difference between typedef struct and struct?
What is the difference between int main and void main?
How reliable are floating-point comparisons?
List out few of the applications that make use of Multilinked Structures?
What does printf does?
How can you find the day of the week given the date?
What is #define?
Why is c still so popular?
What are keywords c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is volatile variable in c?