what do you mean by inline function in C?
No Answer is Posted For this Question
Be the First to Post Answer
Why ordinary variable store only one value
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
How can I do serial ("comm") port I/O?
main difference between c and c++ language
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
What is undefined behavior?
explain what are pointers?
what is the difference between exit() and _exit() functions?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
differentiate built-in functions and user – defined functions.