How does memset() work in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
memset() initializes memory to a specific value.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
memset() initializes memory to a specific value.
| Is This Answer Correct ? | 0 Yes | 0 No |
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What is 02d in c?
what is the difference between const volatile int i & volatile const int j;
How is = symbol different from == symbol in c programming?
Differentiate between full, complete & perfect binary trees.
Why is c called a structured programming language?
Why is c called "mother" language?
What is the purpose of Scanf Print, getchar, putchar, function?
What is void pointers in c?
Is main() function predfined or userdefined?
How to print India by nested loop? I IN IND INDI INDIA