What is pass by reference in functions?
No Answer is Posted For this Question
Be the First to Post Answer
how we do lcm of two no using c simple if while or for statement
void main() { int i=5; printf("%d",i++ + ++i); }
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
write a c program to check weather a particluar bit is set or not?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
What does char * * argv mean in c?
printf("%d",(printf("Hello")); What it returns?
Why can't I perform arithmetic on a void* pointer?
Write a C program to print 1 2 3 ... 100 without using loops?
How can my program discover the complete pathname to the executable from which it was invoked?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);