How do I determine whether a character is numeric, alphabetic, and so on?
No Answer is Posted For this Question
Be the First to Post Answer
What is the size of enum in bytes?
What are logical errors and how does it differ from syntax errors?
I want tcs placement papers of 2004-2009 , its urgent
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
write an interactive program to generate the divisors of a given integer.
what is the self-referential structure?
What is the value of c?
What is a structure in c language. how to initialise a structure in c?
What is the difference between realloc() and free()
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Write a program to reverse a given number in c language?