C program execution always begins with

a) #include

b) comment (/*-------*/)

c) main()

d) declaration instructions


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

Post New Answer

More C Interview Questions

main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?

12 Answers   Tech Mahindra,


What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

21 Answers   ADITI, Student, TCS,


what is meant by c

9 Answers   INiTS,


Why is c called c?

0 Answers  


Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));

6 Answers   TCS,






what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }

1 Answers  


main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }

2 Answers  


Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.

4 Answers  


How can you convert integers to binary or hexadecimal?

0 Answers  


Write programs for String Reversal & Palindrome check

0 Answers   TISL,


what are the interview question's in the language c

2 Answers   Nipuna,


What is a program flowchart and explain how does it help in writing a program?

0 Answers  


Categories