What is a char c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
Why do we use pointer to pointer in c?
Write a program to check whether a number is prime or not using c?
How can you read a directory in a C program?
how to find sum of 5 digits in C?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What is the memory allocated by the following definition ? int (*x)();
What are qualifiers?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Is it better to use a macro or a function?
How is a null pointer different from a dangling pointer?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above