Can we assign integer value to char in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I implement a delay, or time a users response, with sub-second resolution?
Without using main fn and semicolon,print remainder for a given number in C language
Q. where is the below variables stored ? - volatile, static, register
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are the preprocessor categories?
what is difference between C and C++
Write a program for finding factorial of a number.
What is difference between main and void main?
What is header file in c?
How to avoid buffer overflow?
What is c preprocessor mean?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work