while initialization of array why we use a[][2]
why not a[2][]...?
No Answer is Posted For this Question
Be the First to Post Answer
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
How can I recover the file name given an open stream?
what do you mean by enumeration constant?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
difference of two no's with out using - operator
What is the difference between if else and switchstatement
What is the g value paradox?
How to removing white spces in c programming only bu using loops