What math functions are available for integers? For floating point?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What happens if header file is included twice?
What are derived data types in c?
what is the similarities between. system call and library function?
What is the difference between text and binary i/o?
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
what is available in C language but not in C++?
10 Answers CTS, TCS,
Is main is a keyword in c?
What are the different types of control structures in programming?
difference between native and cross compilers
what are bit fields in c?