Explain what is wrong with this program statement?
No Answer is Posted For this Question
Be the First to Post Answer
What is the explanation for the dangling pointer in c?
Why is sprintf unsafe?
What are conditional operators in C?
WAP to accept first name,middle name & last name of a student display its initials?
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
What is formal argument?
What is sizeof int in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
how to find the kth smallest element in the given list of array elemnts.
What is file in c preprocessor?
How can you find the exact size of a data type in c?
what is recursion in C