Explain how do you use a pointer to a function?
No Answer is Posted For this Question
Be the First to Post Answer
what is the program to display your name in any color?
Can we change the value of static variable in c?
a simple c program using 'for' loop to display the output 5 4 3 2 1
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Why we use int main and void main?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
i have a written test in tomorrow
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
what is a stack