hOW Can I add character in to pointer array of characters
char *a="indian";
ie I want to add google after indian in the char *a
Answer / david
it is not possible because it declares a block of array in
the time of initialisation
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Why main function is special give two reasons?
Why is C language being considered a middle level language?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is identifiers in c with examples?
What is the difference between test design and test case design?
How can I find out the size of a file, prior to reading it in?
What are multidimensional arrays?
What is array in C
What ios diff. Between %e & %f?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????