shorting algorithmS
No Answer is Posted For this Question
Be the First to Post Answer
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
Write down the program to sort the array.
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
Who developed c language?
write a programme that inputs a number by user and gives its multiplication table.
Is array name a pointer?
What is integer constants?
Write a program to swap two numbers without using third variable in c?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
What is a protocol in c?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }