What is main void in c?



What is main void in c?..

Answer / akila

Main function

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

when to use : in c program?

2 Answers  


Are global variables static in c?

0 Answers  


Who invented bcpl language?

0 Answers  


write a c program for swapping two strings using pointer

0 Answers  


#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,






How does struct work in c?

0 Answers  


What is the difference between array and pointer in c?

0 Answers  


What is masking?

0 Answers  


What's a good way to check for "close enough" floating-point equality?

0 Answers   Celstream,


Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;

5 Answers   Accenture, TCS,


Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?

1 Answers   Infosys,


What is the scope of static variables?

1 Answers  


Categories