What is character constants?
No Answer is Posted For this Question
Be the First to Post Answer
How can I prevent another program from modifying part of a file that I am modifying?
what is dangling pointer?
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 the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What are enumerated types?
Why is struct padding needed?
What is the difference between text and binary modes?
What is a Genralised LInked List?? Please give a detailed explation of it..
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
What is scope rule in c?
What is the equivalent code of the following statement in WHILE LOOP format?
Explain what is a program flowchart and explain how does it help in writing a program?