How do you determine a file’s attributes?
No Answer is Posted For this Question
Be the First to Post Answer
Explain Basic concepts of C language?
What are the two forms of #include directive?
WHAT IS ABSTRACT DATA TYPE
which types of data structure will i use to convert infix to post fix???
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is pass by value in c?
. Write a program to get a string and to convert the 1st letter of it to uppercase
What are the 5 types of organizational structures?
Why void main is used in c?
Output for following program using for loop only * * * * * * * * * * * * * * *
What happens if you free a pointer twice?
how to find the kth smallest element in the given list of array elemnts.