Why we write conio h in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to find out the reverse number of a digit if it is input through the keyboard?
Write a program for deleting duplicate elements in an array
what is the flow of execution in cprogram? ex:printf();,scanf();
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);
How will you allocate memory to double a pointer?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
What are local static variables?
Define recursion in c.
What is size of union in c?
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
In C language, a variable name cannot contain?
Find greatest number out of 10 number without using loop.