In C language, a variable name cannot contain?
No Answer is Posted For this Question
Be the First to Post Answer
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; }
Which is better malloc or calloc?
char p="data"; printf(p);
Where in memory are my variables stored?
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What is #include stdio h and #include conio h?
what is meant by the "equivalence of pointers and arrays" in C?
while initialization of array why we use a[][2] why not a[2][]...?
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
What is boolean in c?
How can I recover the file name given an open stream or file descriptor?