How many loops are there in c?


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

Post New Answer

More C Interview Questions

What is the difference between class and object in c?

0 Answers  


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

2 Answers   Ignou,


Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.

0 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


When should the volatile modifier be used?

0 Answers  






What is the advantage of using #define to declare a constant?

0 Answers   Agilent, ZS Associates,


What do you mean by keywords in c?

0 Answers  


How many bytes is a struct in c?

0 Answers  


Write a program for deleting duplicate elements in an array

3 Answers   Subex,


What is the Difference between Class and Struct?

10 Answers   Motorola,


How important is structure in life?

0 Answers  


What is pointers in c with example?

0 Answers  


Categories