What is c language and why we use it?
No Answer is Posted For this Question
Be the First to Post Answer
second highest number in a given set of numbers
write a C code To reverse a linked list
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
What is s or c?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Explain what are the different file extensions involved when programming in c?
Write a program to reverse a given number in c language?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }