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

Find occurence of a character in a sting.

3 Answers   TCS,


what is the difference between char * const and const char *?

2 Answers   TCS,


why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

0 Answers  


#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?

6 Answers   NDS,


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

0 Answers  






Write a program to compare two strings without using the strcmp() function

42 Answers   Accenture, Arba Minch University,


What is a method in c?

0 Answers  


is compiler do read the data line by line or not. ??

6 Answers   LG Soft, Satyam, Tech Mahindra,


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


What is alloca() and why is its use discouraged?

1 Answers  


How do you do dynamic memory allocation in C applications?

0 Answers  


How can I rethow can I return a sequence of random numbers which dont repeat at all?

0 Answers  


Categories