What are categories used for in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is a c-language.what is do.
what are the interview question's in the language c
what does ‘#include’ mean?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
Why do we use stdio h and conio h?
How can I write a function that takes a format string and a variable number of arguments?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What is variable in c example?
What is maximum size of array in c?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }