What is actual argument?
No Answer is Posted For this Question
Be the First to Post Answer
What will be your course of action for a push operation?
Expand the following LKB BKL FFG
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What is return type in c?
How to set file pointer to beginning c?
What is an operator?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
Tell about strtok & strstr functions
2 Answers HCL, iFlex, Motorola,
What is the difference between realloc() and free()
Q. where is the below variables stored ? - volatile, static, register
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?