Is python a c language?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
how do you redirect stdout value from a program to a file?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What is meant by global static? why we have to use static variable instead of Global variable
Can an array be an Ivalue?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Write the Program to reverse a string using pointers.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is meaning of tree
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
void main() { int i=5; printf("%d",i+++++i); }
Describe the order of precedence with regards to operators in C.