What is Your Name :)
What are two dimensional arrays alternatively called as?
What is the difference between %d and %*d in C
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
What are the types of data files?
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
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
What is a stream water?
Can you please explain the scope of static variables?
how can u print a message without using any library function in c
What is void c?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Explain what is the stack?