int main()
{
Int n=20,i;
For(i=0;i<=n;i--)
{
Printf(“-“);
Return 0;


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

Post New Answer

More C Interview Questions

Is main an identifier in c?

0 Answers  


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

0 Answers  


What is the difference between c &c++?

0 Answers  


int i=~0; uint j=(uint)i; j++; printf(“%d”,j);

1 Answers  


To find whether a number is even or odd without using any conditional operator??

12 Answers   College School Exams Tests, IBM,


What is boolean in c?

0 Answers  


How can I insert or delete a line (or record) in the middle of a file?

0 Answers  


How do you list a file’s date and time?

0 Answers  


Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);

1 Answers  


write a program to fined second smallest and largest element in a given series of elements (without sorting)

9 Answers   Yahoo,


what is the difference between procedure oriented and object oriented progaming language

1 Answers  


what is the difference between <stdio.h> and "stdio.h"

14 Answers   Invendis, Kanbay, Mastek, MathWorks,


Categories