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 |
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
Explain what are the different file extensions involved when programming in c?
Explain how can a program be made to print the name of a source file where an error occurs?
Using which language Test cases are added in .ptu file of RTRT unit testing???
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
How can I write a function that takes a format string and a variable number of arguments?
What is a Genralised LInked List?? Please give a detailed explation of it..
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above
What is information technology.
What is a char c?
What is self-referential structure in c programming?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5