What is the importance of c in your views?
No Answer is Posted For this Question
Be the First to Post Answer
What is boolean in c?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Explain how does flowchart help in writing a program?
how to go with this?
yogesh patil in dell
What is scope of variable in c?
What is the auto keyword good for?
What is a symbolic constant?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
write a method for an array in which it can display the largest n next largest value.
What are the types of data structures in c?
Why isnt there a numbered, multi-level break statement to break out