What is a structure and why it is used?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What is meant by errors and debugging?
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
Write a program to reverse a given number in c language?
Are pointers integer?
Explain the term printf() and scanf() used in c language?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Why do we need functions in c?
the operator for exponencation is a.** b.^ c.% d.not available
write a program in c language to print your bio-data on the screen by using functions.