What is the difference between call by value and call by reference in c?
No Answer is Posted For this Question
Be the First to Post Answer
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is a structural principle?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
Function calling procedures? and their differences? Why should one go for Call by Reference?
What's the best way to declare and define global variables?
how could explain about job profile
What is atoi and atof in c?
What is diffrance between declaration and defination of a variable or function
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
Explain bit masking in c?