application areas a 'c'
a) operating system
b) graphics, interpreter, assembler
c) program evalution, communication softwares
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
Can a pointer be volatile in c?
String concatenation
write a program to convert a expression in polish notation (postfix) to inline (normal)
What is hashing in c?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
What is derived datatype in c?
When do we get logical errors?
explain what is fifo?
What is difference between structure and union in c programming?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????