what is the importance of spanning tree?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
A program to allow an input operand and operator from the operator and read on the display and output operand.
What's the difference between calloc() and malloc()?
What is cohesion in c?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What are the two forms of #include directive?
What are the different pointer models in c?
What is scope rule of function in c?
Write a program to print fibonacci series without using recursion?
What is action and transformation in spark?
What is typeof in c?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....