write c program to display output 10(10+20)+(10+20+30)+ ... n
term
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of the #include directive?
What is else if ladder?
Why c is called free form language?
12. 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
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
yogesh patil in dell
What is Memory leakage ?
What is a good data structure to use for storing lines of text?
Hi, main() { } Is a user defined function or Built in Functionn
What is main () in c?
Explain how can a program be made to print the line number where an error occurs?