Does c have function or method?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
write a program to interchange the value between two variable without using loop
What are header files? What are their uses?
count the numbers between 100 and 300, that star with 2 and ends with 2
What are the types of unary operators?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
What are qualifiers in c?
What is Conio.h ?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What are nested functions in c?