What is an example of structure?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
program to locate string with in a string with using strstr function
Write a small C program to determine whether a machine's type is little-endian or big-endian.
12345 1234 123 12 1
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
How to add two numbers without using semicolon n c????
write a program to print infinte number
Why preprocessor should come before source code?
A C E G H +B D F A I ------------ E F G H D
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference