why should i select you?
Answers were Sorted based on User's Feedback
How can I find out the size of a file, prior to reading it in?
Write the syntax and purpose of a switch statement in C.
What is the meaning of ?
Write a program to find the biggest number of three numbers in c?
what is the structure pointer?
What is 1d array in c?
Why is this loop always executing once?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
How do you access command-line arguments?
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
Program to find largest of three numbers without using comparsion operator?
What are the preprocessors?