What is the hardest programming language?
No Answer is Posted For this Question
Be the First to Post Answer
main() {int a=200*200/100; printf("%d",a); }
what is the diference between pointer to the function and function to the pointer?
How macro execution is faster than function ?
Why pointers are used in c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
find largest element in array w/o using sorting techniques.
Explain the difference between exit() and _exit() function?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What is auto keyword in c?
how to find sum of digits in C?
What is the explanation for prototype function in c?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above