Is c high or low level?
No Answer is Posted For this Question
Be the First to Post Answer
Why is sprintf unsafe?
What is the right way to use errno?
What is malloc and calloc?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Write a program in c to print * * * * * *******
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
How we can set and clear bit in a byte using macro function?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is a c token and types of c tokens?
Dear Sir, we are required the bubble sorting programs Regs Prem
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }