answersLogoWhite

0


Best Answer

ANSWER in PUNJAbi

22ji e ta bahut sokha hai..

looping statement di help naal asi program de kise v hisse nu vaar vaar chla sakde ha. man lo tussi apna naam 200 vaar print krana hai , ta "printf" command 200 var likhni peni hai, but looping di help naal asi e kam sirf ik vaar "Printf" likh k kar sakde haa. for(i=0; i<200; i++) { printf("gurpreet singh 3184/w"); }

int i=0;

while(i<200)

{

printf("gurpreetsingh3184/w");

i++;

}

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is looping statement in c language in Punjabi language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between control statements and looping statements in c language?

differance between control statement and looping statement?


What are the three looping statement in turbo C?

for,while,do while


What is looping statement in turbo c?

while, for, do-while (and perhaps goto)


How do you use a C-continue statement in a block- without any looping or conditional statements?

In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.


Why do you use looping statement in c language?

Usually the loop is used for repeating the same task for more than one time. If you don't give the terminating statement then the loop will go in infinite condition.


Looping statement in c plus plus?

There are several 'looping' statements in C++. They are:while () { }do { } while () ;for (index-start, index-end; index increment/decrement) { }They are used to repetitively execute statements as long as the statement(s) controlling the loop are true.


What is a statement in c language programme?

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


What is looping in c plus plus?

A loop in computer languages is a set of statements that execute repeatedly, based on some criteria.In C and C++, the three looping statements are while, do, and for...while (test-expression) statement;/* statement executes zero or more times, until test-expression is false, test first */do statement while (test-expression);/* statement executes one or more times, until test-expression is false, test last */for (init-expression, test-expression, loop-expression) statement;/* init-expression executed once, at beginning *//* statement executes zero or more times, until test-expression is false, test first *//* loop-expression evaluated at end of each iteration */Often, statement, is a set of statements, such as...while (test-expression) {... statements}


What is executable statement of c language?

anything ending in semicolon/;


What is if-statement in c programming language?

One of the statements, obviously.


What is statement terminator in c language?

The compiler demands it: your programs wouldn't compile without them.


What is else if in C programming language?

Statements. Typical usage: if (&lt;condition&gt;) &lt;statement&gt;; else &lt;statement&gt;;