what will be the output:
main(){char ch;int a=10;printf("%d",ch);}

Answer Posted / uttama

garbage value will be given

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is substring in c?

635


Why doesn't C support function overloading?

1611


What are static variables in c?

627


The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?

766


What is the purpose of realloc()?

665






what is bit rate & baud rate? plz give wave forms

1512


Write a code on reverse string and its complexity.

606


Why is c known as a mother language?

740


How to create struct variables?

588


Why is it important to memset a variable, immediately after allocating memory to it ?

1550


Who invented b language?

911


What is pass by reference in functions?

320


What are examples of structures?

591


What is #include called?

565


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

666