What are the string functions? List some string functions available in c.
No Answer is Posted For this Question
Be the First to Post Answer
What do you understand by normalization of pointers?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is floating point constants?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
how to swap 4 number without using temporary number?
provide an example of the Group by clause, when would you use this clause
What is difference between Structure and Unions?
program for validity of triangle from 3 side
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
WHAT IS PRE POSSESSORS?