What is the correct code to have following output in c using nested for loop?
What is difference between far and near pointers?
Whats s or c mean?
what is a stack
Write a routine that prints out a 2-D array in spiral order!
How does C++ help with the tradeoff of safety vs. usability?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
write an algorithm to display a square matrix.
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
what type of language is C?
Explain the ternary tree?
Can we change the value of static variable in c?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }