What are the different categories of functions in c?
Answer / Vishal Misra
"In C programming, there are two main categories of functions: Built-in functions (predefined by the compiler) and User-defined functions (created by the programmer)."
| Is This Answer Correct ? | 0 Yes | 0 No |
What is use of integral promotions in c?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
What is an object?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
what is the difference between structural,object based,object orientd programming languages?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the diffences between Windows XP and Windows Visa
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Write a programe print the sum of series 0,1,2,.....10
What does return 1 means in c?
Can u return two values using return keyword? If yes, how? If no, why?
Why does everyone say not to use scanf? What should I use instead?