Is file a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
What standard functions are available to manipulate strings?
why we use pointer 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; }
How are 16- and 32-bit numbers stored?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is %d called in c?
What is a constant and types of constants in c?