How can I do graphics in c?
No Answer is Posted For this Question
Be the First to Post Answer
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
Write a program to find minimum between three no.s whithout using comparison operator.
Can you add pointers together? Why would you?
What is data types?
What are the advantages of c preprocessor?
What is header file in c?
What does %c do in c?
What is the difference between procedural and functional programming?
write a program to find the largest and second largest integer from an array
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
What is wild pointer in c with example?