what are # pragma staments?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of keyword volatile??
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
Why doesn't C support function overloading?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What is pointer and structure in c?
What are the main characteristics of c language describe the structure of ac program?
What is structure pointer in c?
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82