What are variables c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to swap two numbers without using third variable?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Find MAXIMUM of three distinct integers using a single C statement
a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
Explain pointer. What are function pointers in C?
what is the use of call back function in c?tell me with example
write a program to generate 1st n fibonacci prime number
What are the parts of c program?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?