What is the right type to use for boolean values in c? Is there a standard type?
No Answer is Posted For this Question
Be the First to Post Answer
What is %s and %d in c?
write a program to generate 1st n fibonacci prime number
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
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What standard functions are available to manipulate strings?
What is oops c?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
what is foreign key in c language?