How to develop software using "c" programming?
Answer / t.ilaya raja perumal
the software were devoloped through the c cocding
| Is This Answer Correct ? | 6 Yes | 2 No |
who did come first hen or agg
write a program structure to find average of given number
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
How to removing white spces in c programming only bu using loops
Explain Basic concepts of C language?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
What do you mean by dynamic memory allocation in c?
What are comments and how do you insert it in a C program?
Explain function?
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }