What is a list in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are different storage class specifiers in c?
What is #define in c?
Why void main is used in c?
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
What is dangling pointer in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
what is self refrential structure
What is the significance of an algorithm to C programming?
write a function for strtok()??
Write code for finding depth of tree
how to swap 4 number without using temporary number?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }