What is %lu in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can this be legal c?
main() { int a; a=++100; printf("%d",a); getch(); }
why we are using semicolon at the end of printh statment
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What does do in c?
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,
How can variables be characterized?
what is the disadvantage of using macros?
Are pointers really faster than arrays?
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????
what is diognisis?
main() { int i; printf("%d",i^i); }