What is a struct c#?
No Answer is Posted For this Question
Be the First to Post Answer
related proverb of "dont count your chicken before it hatches"
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
how do you execute a c program in unix.
What is the use of c language in real life?
Is null always defined as 0(zero)?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
Can you please explain the difference between malloc() and calloc() function?
what is the use of macro program
Software Interview Questions
what does data structure mean?
Which built-in library function can be used to match a patter from the string?