Tell us bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
what is the structure pointer?
write a program to find the largest and second largest integer from an array
Write a c program to build a heap method using Pointer to function and pointer to structure ?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
What are the types of macro formats?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
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 the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
what is the flow of execution in cprogram? ex:printf();,scanf();
write a function which accept two numbers from main() and interchange them using pointers?