answersLogoWhite

0


Best Answer

int main (void)

{

puts ("1 232 34543 232 1");

return 0;

} int main (void)
{ puts ("1 232 34543 232 1"); return 0; }

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you programme 1 232 34543 232 1 in C?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you use this function in c programme?

I don't use that function in C programme.


Programme for sum of two integers using C?

int a = 1; int b = 2; int c = a + b; // Sum


Write a c program to print 1 232 34543 5678765 using for loop?

If you visualize 1123581321 as a set of numbers (without spaces in between) instead of one number, you'll see that it's a set of the first 8 Fibnocci nos. - 1 1 2 3 5 8 13 21. The following program would print the required no. using a For looping structure. int main (void) { int i=1; int j=1; int k, num=1; for(k=0; k<7; k++){ if(k==0){ printf("%d", num); } printf("%d", num); //next no. is the sum of previous two nos. in the series i=j; j=num; num=i+j; // 1 + 1 = 2 ... 1 + 2 = 3 ... 2 + 3 = 5 ... 3 + 5 = 8 // sum=i + j ... i takes value of j ... j takes value of sum ... repeat. } }


When asoka died?

died c. 232 BC


How many c 17 have been built?

232


Make programme for multification of three no in c plus plus?

result = a * b * c;


How many keywords are there in c?

answer:32 programme to print factorial of a given number in c languages


One line programme in c language?

int main (void) { printf ("One line programme\n"); return 0; }


C programme for symmetric and skew symmetric matrices?

#include<iostream.h>


What is a statement in c language programme?

Any experssion including assignment or a function call can be a statement in C


What music is played in the inspector purbright programme?

String Quintet in C is the music that is played in the inspector Purbright Programme. It the music is played by Schubert.


Write a programme for substraction of two numbers in c language?

substracion of any two number program in c