Can you add pointers together? Why would you?
what are the 10 different models of writing an addition program in C language?
What is the g value paradox?
what is Array?
Does c have enums?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Is int a keyword in c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What is difference between Structure and Unions?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
in iso what are the common technological language?
program to print upper & lower triangle of a matrix