How many data structures are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the general form of #line preprocessor?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
prog for 1st five prime numbers in 2^x - 1
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
What is the difference between int and float?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Does * p ++ increment p or what it points to?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
How can I do peek and poke in c?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What is a double c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }