main()
{
char p[] = "hello world!";
p = "vector";
printf("%s",p);
}
Answer Posted / shiva
vector
| Is This Answer Correct ? | 13 Yes | 17 No |
Post New Answer View All Answers
What are the different types of data structures in c?
What are # preprocessor operator in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain the difference between #include "..." And #include <...> In c?
I have a varargs function which accepts a float parameter?
Is javascript written in c?
What are dangling pointers? How are dangling pointers different from memory leaks?
What is #include cctype?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is main () in c language?
Explain what’s a signal? Explain what do I use signals for?
What is the best style for code layout in c?
What do you mean by dynamic memory allocation in c?
What is double pointer?