What is the need of structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
Write a program to show the change in position of a cursor using c
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
What is queue in c?
A stack can be implemented only using array?if not what is used?
biggest of two no's with out using if condition statement
What are the functions to open and close the file in c language?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Why do we use int main?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
write a program to print the all 4digits numbers & whose squares must me even numbers?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?