How can I get the current date or time of day in a c program?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
What is a #include preprocessor?
Explain the difference between strcpy() and memcpy() function?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Write a program for print infinite numbers
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
Explain is it valid to address one element beyond the end of an array?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
What is a structure member in c?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
What are c identifiers?
Explain bit masking in c?