diff between exptected result and requirement?
No Answer is Posted For this Question
Be the First to Post Answer
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
How can I allocate arrays or structures bigger than 64K?
Why is c not oop?
Why can’t constant values be used to define an array’s initial size?
What is the use of define in c?
difference between Low, Middle, High Level languages in c ?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
what is the maximum limit of row and column of a matrix in c programming. in linux .
Why does not use getgh(); and <conio.h> in c language.
What is d'n in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }