What is a stream?
No Answer is Posted For this Question
Be the First to Post Answer
how can f be used for both float and double arguments in printf? Are not they different types?
Differentiate call by value and call by reference?
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); }
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
what is unsigened char and what is the difference from char
why we are using semicolon at the end of printh statment
What is ambagious result in C? explain with an example.
what is the difference between getch() and getchar()?
What are the similarities between c and c++?
Does c have function or method?
all c language question
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }