i need all types of question paper releted to "c" and other
language.
No Answer is Posted For this Question
Be the First to Post Answer
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
When c language was developed?
Why pointers are used?
How can I implement a delay, or time a users response, with sub-second resolution?
Define recursion in c.
who will call your main function in c under linux?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
a program that can input number of records and can view it again the record
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
What is a null string in c?
what are two kinds of java
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }