What is structure in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by command line argument?
What is the difference between int main and void main?
Why c is procedure oriented?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
Do you know what is the purpose of 'extern' keyword in a function declaration?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
What library is sizeof in c?
What is wrong with this program statement?
What is s or c?
What is the mean of function?