What is data structure in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Why static is used in c?
Which is better malloc or calloc?
how memory store byte
How do you search data in a data file using random access method?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Why doesnt this code work?
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
what is pointer?
code for copying two strings with out strcpy() function.
`write a program to display the recomended action depends on a color of trafic light using nested if statments
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
what is the return type of printf