What is external variable in c?


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

Post New Answer

More C Interview Questions

Write a program that takes a 5 digit number and calculates 2 power that number and prints it

7 Answers  


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

0 Answers  


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


What is || operator and how does it function in a program?

0 Answers  


regarding pointers concept

0 Answers  


what is linkage error when it occurs in c program

3 Answers  


What is static identifier?

0 Answers   TCS,


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


What is the meaning of 2d in c?

0 Answers  


cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

0 Answers  


Without using main fn and semicolon,print remainder for a given number in C language

2 Answers  


convert 12345 to 54321 withoutusing strig

5 Answers  


Categories