write a proram to reverse the string using switch case?
No Answer is Posted For this Question
Be the First to Post Answer
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
program for swapping two strings by using pointers in c language
What is use of pointer?
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
What is the process to create increment and decrement stamen in c?
What is header file in c?
how to generate the length of a string without using len funtion?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
What is wrong in this statement? scanf(“%d”,whatnumber);
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
What are logical errors and how does it differ from syntax errors?