What is the right type to use for boolean values in c? Is there a standard type?
No Answer is Posted For this Question
Be the First to Post Answer
what is diference between return 0 and return NULL??
What is %lu in c?
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
What is wild pointer in c?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
void main() { int i=5; printf("%d",i+++++i); }
64/square(4)
main is a predefined or user define function if user defined why? if predefined whay?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
Can a program have multiple main() functions?
Difference between for loop and while loop?