Write a c program to demonstrate character and string constants?
No Answer is Posted For this Question
Be the First to Post Answer
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
please give me some tips for the selection in TCS.
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
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 are header files and what are its uses in C programming?
WAP to find that given no is small or capital
What is key word in c language?
What does calloc stand for?
program for swapping two strings by using pointers in c language
What is a pointer and how it is initialized?
What is the difference between char array and char pointer?
What are integer variable, floating-point variable and character variable?