What are high level languages like C and FORTRAN also known as?
No Answer is Posted For this Question
Be the First to Post Answer
How does the C program handle segmentation faults?
main() { printf(5+"Vidyarthi Computers"); }
Write a code on reverse string and its complexity.
Why shouldn’t I start variable names with underscores?
how to do in place reversal of a linked list(singly or doubly)?
Explain how can I read and write comma-delimited text?
Explain how can I pad a string to a known length?
What is extern storage class in c?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
How can I read and write comma-delimited text?
Is that possible to add pointers to each other?