What are the disadvantages of a shell structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of gets and puts?
Explain the difference between fopen() and freopen().
What do you mean by a local block?
What is the use of putchar function?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
What is the difference between macros and inline functions?
Is main an identifier in c?
what is the diffrenet bettwen HTTP and internet protocol
What's wrong with "char *p; *p = malloc(10);"?
Write a routine that prints out a 2-D array in spiral order!
what is difference between declaring the pointer as int and char in c language?