What is an operator?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I make sure that my program is the only one accessing a file?
write an algorithm and c program to add two 2x2 matrics
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Who is invented by c?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
what is the use of call back function in c?tell me with example
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
Where are local variables stored in c?
How pointer is benefit for design a data structure algorithm?
Do pointers store the address of value or the actual value of a variable?
int i=10; printf("%d %d %d", i, i=20, i);
What is int main () in c?