What does
do in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you list files in a directory?
How do you search data in a data file using random access method?
Explain what is the benefit of using const for declaring constants?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
Why header files are used?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
what does ‘Bus Error’ mean?
Write a program to print factorial of given number without using recursion?
what different between c and c++
What is a pointer and how it is initialized?
Write a program to find minimum between three no.s whithout using comparison operator.
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,