What is the difference between volatile and const volatile?
What is boolean in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
How many main () function we can have in a project?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Tell me when would you use a pointer to a function?
How can you call a function, given its name as a string?
Can we compile a program without main() function?
What is the purpose of void in c?
what will be maximum number of comparisons when number of elements are given?
What do you mean by scope of a variable in c?
How to define structures? ·
Explain goto?