When c language was developed?
No Answer is Posted For this Question
Be the First to Post Answer
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); }
Explain how can I prevent another program from modifying part of a file that I am modifying?
Why is c so important?
What is clrscr ()?
ASCII stands for
How can you find out how much memory is available?
how to implement stack work as a queue?
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
What is the purpose of void pointer?
Is c procedural or object oriented?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,