What is an auto keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Discuss the function of conditional operator, size of operator and comma operator with examples.
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What do you understand by friend-functions? How are they used?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
Why doesn't the code "a[i] = i++;" work?
Can we declare variable anywhere 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?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
how to determine the complexity of an algorithm as log(n)
can anyone please tell me wat is backlogs... i was looking for the job openings where i read this.. eligibility criteria minimum 70% in degree without backlogs. is that arrear.. if so is it standing arrear or history of arrears... please help me...
11 Answers CTS, Indian Navy, L&T, Microsoft, SSB, TCE, TCS,
Why we not create function inside function.