What are the main characteristics of c language describe the structure of ac program?
No Answer is Posted For this Question
Be the First to Post Answer
Why is structure padding done in c?
how to swap 4 number without using temporary number?
what do you mean by defining a variable in our c code?
Are the variables argc and argv are always local to main?
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
what is the difference between. system call and library function?
What are the advantages of Macro over function?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
how to create c progarm without void main()?
What are the different types of C instructions?