Why do we use stdio h and conio h?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
How can you return multiple values from a function?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
List the variables are used for writing doubly linked list program.
Why isnt there a numbered, multi-level break statement to break out
Write a program using bitwise operators to invert even bits of a given number.
How do c compilers work?
What are the two types of functions in c?
how to print value of e(exp1)up to required no of digits after decimal?
What is a stream water?
How to avoid structure padding in C?