Explain what is the general form of a c program?
No Answer is Posted For this Question
Be the First to Post Answer
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
how to compare two strings without using strcmp() function??
Binary tree traversing
What is #line?
Can i use “int” data type to store the value 32768? Why?
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
What is pass by reference in c?
Why c is a procedural language?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Write a program in c using only loops to print * * * * * *******
What is pointer to pointer in c language?
Explain the red-black trees?