What is the mean of function?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c fast?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
What does node * mean?
why 'c' is called middle level language.
What standard functions are available to manipulate strings?
What is a macro in c preprocessor?
why arithmetic operation can’t be performed on a void pointer?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
WHAT IS LOW LEVEL LANGUAGE?
What is the use of getchar functions?
Why is sizeof () an operator and not a function?