Answer Posted / bryan olson
The C language terminator is... C++
Faced with an ill-defined question, work with the
interviewer to re-state it precisely in the accepted
terminology of the field.
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
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
Why are algorithms important in c program?
Why n++ execute faster than n+1 ?
Why static variable is used in c?
What is structure pointer in c?
Explain what are bus errors, memory faults, and core dumps?
How can I read data from data files with particular formats?
What is null pointer in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is a header file?
Does c have circular shift operators?
Can we declare variable anywhere in c?