Explain data types & how many data types supported by c?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int a=1; while(a++<=1) while(a++<=2); }
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Is null always equal to 0(zero)?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
When is a “switch” statement preferable over an “if” statement?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
What is a dynamic array in c?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
What is a nested formula?
What is oops c?
How can we open a file in Binary mode and Text mode?what is the difference?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6