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 |
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Why isnt there a numbered, multi-level break statement to break out
Can you tell me how to check whether a linked list is circular?
Why shouldn’t I start variable names with underscores?
Can we change the value of static variable in c?
how could explain about job profile
i want to know aptitude questions,technical questions
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
write a program to generate 1st n fibonacci prime number
What is the difference between %d and %i?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;