Answer Posted / vadivel t
Hi Vignesh,
All the answers u hav posted is correct except declaration
of a variable.
Cos, in C++ we can declare a variable anywhere in a
function.
But in C it is poosible to declare only at the starting of
the function.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Why clrscr is used in c?
Why main is not a keyword in c?
How do we declare variables in c?
What is the use of sizeof?
What does & mean in scanf?
What is sizeof in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is ambagious result in C? explain with an example.
What does a pointer variable always consist of?
Write a program for Overriding.
What is a program flowchart and how does it help in writing a program?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Implement bit Array in C.
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above