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
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
write a program to print infinte number
what is the difference between embedded c and turbo c ?
What does c mean?
What is difference between Structure and Unions?
What is the role of && operator in a program code?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is sizeof return in c?
How can I open a file so that other programs can update it at the same time?