How do you use a pointer to a function?
code for replace tabs with equivalent number of blanks
count the numbers between 100 and 300, that star with 2 and ends with 2
Explain a file operation in C with an example.
What are logical errors and how does it differ from syntax errors?
What is graph in c?
How to avoid structure padding in C?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
Can a local variable be volatile in c?
what are the different storage classes in c?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
What is keyword in c?