Why do we need a structure?
No Answer is Posted For this Question
Be the First to Post Answer
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
1. Write a program to reverse every second word in a given sentence.
coding for Fibonacci.?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
What are header files and explain what are its uses in c programming?
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
Write down the program to sort the array.
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Explain the difference between malloc() and calloc() in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is the purpose of sprintf?
What is sorting in c plus plus?