Answer Posted / vignesh1988i
1025
| Is This Answer Correct ? | 3 Yes | 7 No |
Post New Answer View All Answers
What is c method?
What are header files? What are their uses?
What are structure types in C?
What is cohesion and coupling in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Write a program to check palindrome number in c programming?
Explain the difference between getch() and getche() in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What are data types in c language?
What are the types of pointers in c?
Write a program to know whether the input number is an armstrong number.
How can I read data from data files with particular formats?
What is sizeof array?
Why doesnt this code work?
What is register variable in c language?