What is non linear data structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Calculate 1*2*3*____*n using recursive function??
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
How do we make a global variable accessible across files? Explain the extern keyword?
what is mean by Garbage collection ? Please answer me. Advance thanks.
how to compare two strings without using strcmp() function??
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
How do you print only part of a string?
Explain what is the difference between null and nul?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
List the difference between a While & Do While loops?
What is void main () in c?