How can I remove the trailing spaces from a string?
No Answer is Posted For this Question
Be the First to Post Answer
Is c dynamically typed?
what is the difference between c and c++?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What is the value of c?
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
What does c value mean?
For what purpose null pointer used?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What is the correct code to have following output in c using nested for loop?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
Explain what is the difference between declaring a variable and defining a variable?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?