write a c program to find largest of three numbers using simple if only for one time.
Write a program to generate the Fibinocci Series
What does c mean?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
how we can say java is platform independent, while we require JVM for that particular Operating System?
write a program to interchange the value between two variable without using loop
Explain how can you determine the size of an allocated portion of memory?
Write a program to find whether the given number is prime or not?
Is main is a keyword in c?
. Explain the differences between fork() and exec() in C
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is c variable?