What are external variables in c?


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

Post New Answer

More C Interview Questions

when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none

7 Answers   HCL,


Distinguish between actual and formal arguments.

0 Answers  


What is meant by operator precedence?

0 Answers  


how can i get this by using for loop? * ** * **** * ******

3 Answers   Excel,


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,






C program to find all possible outcomes of a dice?

0 Answers  


What is the difference between printf and scanf in c?

0 Answers  


What is calloc in c?

0 Answers  


What are bitwise shift operators in c programming?

0 Answers  


main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?

1 Answers   GATE,


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

4 Answers   IBM, Vector,


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

0 Answers  


Categories