What is boolean in c?
No Answer is Posted For this Question
Be the First to Post Answer
Which header file is essential for using strcmp function?
Explain what is the difference between a free-standing and a hosted environment?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What's the difference between a linked list and an array?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Do you know what is the purpose of 'extern' keyword in a function declaration?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What are the __date__ and __time__ preprocessor commands?
What is the difference between the local variable and global variable in c?
Is c object oriented?