Can we declare variable anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
How are portions of a program disabled in demo versions?
why TCS selected more student in the software field from all institution.
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is string constants?
Do you know the difference between exit() and _exit() function in c?
c program for searching a student details among 10 student details
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
How to convert decimal to binary in C using recursion??
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
What is pointer and structure in c?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }