What is the right type to use for boolean values in c? Is there a standard type?
No Answer is Posted For this Question
Be the First to Post Answer
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
What does return 1 means in c?
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
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What are the application of c?
Explain pointers in c programming?
how to find anagram without using string functions using only loops in c programming
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
How will you delete a node in DLL?
What is hungarian notation? Is it worthwhile?
What are the benefits of c language?
What is the use of a conditional inclusion statement in C?