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 Posted / 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 |
Post New Answer View All Answers
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
Is c# a good language?
How to compare array with pointer in c?
What is restrict keyword in c?
what value is returned to operating system after program execution?
What functions are in conio h?
What is a structural principle?
What is a pointer on a pointer in c programming language?
What is a keyword?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What are the different types of C instructions?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
How do I get a null pointer in my programs?
what will be the output for the following main() { printf("hi" "hello"); }
Do you know the difference between malloc() and calloc() function?