what is the c source code for the below output?
10 10 10 10 10 10 10 10 10 10
9
9
7 6 6 6 6 6 6 9
7 5 9
7 3 2 2 5 9
7 3 1 5 9
7 3 5 9
7 4 4 4 4 5 9
7 8 8 8 8 8 8 8 8 9
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
What is the difference between c &c++?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
How to convert decimal to binary in C using recursion??
Can you please compare array with pointer?
say the following declaration is correct nr not. int b=a,n=0;
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
What are the features of c languages?
What is getch?
void main() { int a=1; while(a++<=1) while(a++<=2); }
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
Who is the founder of c language?