What is the code in while loop that returns the output of given code?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?

0 Answers  


Explain how can I write functions that take a variable number of arguments?

0 Answers  


Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program

19 Answers   CTS, HCL, TCS,


The differences between Windows XP and Windows Visa

8 Answers   HCL,


swapping of two numbers without using third variable using AND and OR operators

2 Answers  






What are the complete rules for header file searching?

0 Answers  


What does the && operator do in a program code?

0 Answers  


suppose there are five integers write a program to find larger among them without using if- else

2 Answers  


how to capitalise first letter of each word in a given string?

0 Answers  


what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 Answers   IBM,


I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed

4 Answers   Aspire,


Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17

0 Answers  


Categories