What are the types of pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is c is a procedural language?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Is swift based on c?
related proverb of "dont count your chicken before it hatches"
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is variable in c example?
Write a program to identify if a given binary tree is balanced or not.
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
Which header file is essential for using strcmp function?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*