Why calloc is better than malloc?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
What is variable in c example?
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 non linear data structure in c?
Is there anything like an ifdef for typedefs?
Explain what are multibyte characters?
Implement bit Array in C.
what are the general concepts of c and c++
What is nested structure with example?
What is pass by value in c?