What is clrscr in c?
No Answer is Posted For this Question
Be the First to Post Answer
Program to trim a given character from a string.
What is the use of getch ()?
What is macro?
What are the types of operators in c?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
Write a program to check palindrome number in c programming?
What does sizeof function do?
explain what is an endless loop?
Give me basis knowledge of c , c++...
what is a function pointer and how all to declare ,define and implement it ???
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What is memmove?