Answer Posted / shanmuganathanbalasubramanian
what is the difference between in if (i=2)$(i==2)
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
What is the difference between formatted&unformatted i/o functions?
What is the use of in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is the use of a conditional inclusion statement in C?
What are the functions to open and close the file in c language?
Apart from dennis ritchie who the other person who contributed in design of c language.
How can I direct output to the printer?
Explain why C language is procedural?
What does calloc stand for?
What are identifiers in c?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Is null always defined as 0(zero)?
What is a null pointer in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?