Explain the difference between structs and unions in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can you increase the size of a statically allocated array?
Write a program to find the biggest number of three numbers in c?
What is && in c programming?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
what is the role you expect in software industry?
suppose there are five integers write a program to find larger among them without using if- else
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Why static is used in c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
Difference between C and Embedded C?
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?