Why structure is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
State the difference between realloc and free.
Differentiate b/w Modify and Update commands giving example.
What is wrong with this declaration?
what is difference between #include<stdio.h> and #include"stdio.h"
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
what are the advantages & disadvantages of unions?
can we implement multi-threads in c.
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
What is the difference between int and float?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
can we define a function in structure?
why the execution starts from main function