What is the proper way of these job
Tell me about there full work
No Answer is Posted For this Question
Be the First to Post Answer
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
#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?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Is there a way to switch on strings?
Write a program to generate prime factors of a given integer?
Why c++ is called c++ and not c+?
how to find anagram without using string functions using only loops in c programming
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
How do you define a string?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }