What is the difference between formatted&unformatted i/o functions?
No Answer is Posted For this Question
Be the First to Post Answer
what does ‘Bus Error’ mean?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Explain how do you use a pointer to a function?
What is use of bit field?
How. To pass the entrance test
What is the size of empty structure in c?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
Can we replace the struct function in tree syntax with a union?
write a program to print the one dimensional array.
What is meant by type casting?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
simple program of graphics and their output display