How is actual parameter different from the formal parameter?
No Answer is Posted For this Question
Be the First to Post Answer
Can we replace the struct function in tree syntax with a union?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What are the differences between new and malloc in C?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
What is the difference between Printf(..) and sprint(...) ?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
What is the advantage of an array over individual variables?
c program to subtract between two numbers without using '-' sign and subtract function.
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
What are the functions to open and close the file in c language?