Why main is not a keyword in c?


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

Post New Answer

More C Interview Questions

Tell me with an example the self-referential structure?

0 Answers  


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

0 Answers  


is it possible to change the default calling convention in c ?

1 Answers   Aptech,


What are the types of operators in c?

0 Answers  


What is the use of keyword VOLATILE in C?

1 Answers  






What is a wrapper function in c?

0 Answers  


Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?

4 Answers  


program that accepts amount in figures and print that in words

2 Answers   Infosys, Lovely Professional University, Wipro,


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


What is the difference between %d and %i?

0 Answers  


Do you know what is the purpose of 'extern' keyword in a function declaration?

0 Answers  


Why is c called "mother" language?

0 Answers  


Categories