What is mean by data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() {int a=200*200/100; printf("%d",a); }
What is console in c language?
What are different types of variables in c?
Which is better oop or procedural?
who did come first hen or agg
Place the #include statement must be written in the program?
Why static variable is used in c?
Differentiate between ordinary variable and pointer in c.
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What is #line used for?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
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?