the statement while(i) puts the entire logic in loop. this loop is called
a) indefinite loop
b) definite loop
c) loop syntax wrong
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is else if ladder?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
Is sizeof a keyword in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is a substring in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
write a program wch produces its own source code aas its output?
what is linkage error when it occurs in c program
What is meant by inheritance?
void main() { int i=5; printf("%d",i++ + ++i); }
What is nested structure?