What does int main () mean?


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

Post New Answer

More C Interview Questions

How can I read in an object file and jump to locations in it?

0 Answers  


What does 2n 4c mean?

0 Answers  


enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


Explain is it valid to address one element beyond the end of an array?

0 Answers  


What is the difference between array_name and &array_name?

0 Answers  






What's wrong with "char *p = malloc(10);" ?

4 Answers  


What is the default value of local and global variables in c?

0 Answers  


Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4

2 Answers   Mascot,


WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *

3 Answers   Infosys, TCS,


What are the 5 elements of structure?

0 Answers  


#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā€); #endif

4 Answers   IBM, Vector,


pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.

4 Answers   Persistent, Valyoo,


Categories