This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main() | |
{ | |
int m = 96,j= 49; | |
m = (printf("What's up"), printf(" programmers ? ")); | |
printf("%d", m); | |
return 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main() | |
{ | |
int m, n; | |
int i = 0, j = 4; | |
for(m = 0, n = 0; m < i, n < j; m++, n++) | |
{ | |
printf("Codeplaza\nCodeplaza\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
void codeplaza(int*, int*); | |
int main() | |
{ | |
int m=7, n=9; | |
codeplaza(&m, &n); | |
printf("%d, %d", m, n); | |
return 0; | |
} | |
void codeplaza(int *m, int *n) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
+-----------------------------------------------------------+ | |
| Newton-Raphson Method For Polynomial Complex Root Solving | | |
| Gerardo V. Lozada, MS, PEE | | |
| November 7, 1999/November 7, 2013 | | |
+-----------------------------------------------------------+ | |
*/ | |
#include <complex.h> | |
#include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
int main (void) | |
{ | |
int select = 0, count = 0, count2 = 0, temp = 0, num[6]; | |
char *type; | |
srand (time (NULL)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <conio.h> | |
#include <graphics.h> | |
#include <stdlib.h> | |
#define RIGHT 19712 | |
#define LEFT 19200 | |
#define UP 18432 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//RAINBOW IN C++ | |
#include<stdio.h> | |
#include<conio.h> | |
#include<graphics.h> | |
#include<dos.h> | |
void main() | |
{ | |
int gdriver = DETECT,gmode; | |
int x,y,i; | |
initgraph(&gdriver,&gmode,"D:\\TC\\BGI"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<fstream.h> | |
#include<iomanip.h> | |
#include<stdio.h> | |
#include<string.h> | |
#include<ctype.h> | |
#include<windows.h> | |
#include<process.h> | |
#include<time.h> | |
void header(int); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdarg.h> | |
/* | |
this program takes inputs from user and stores them into specific locations wherever user specify | |
without using scanf function. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
void inttobin(int); //the function that will convert the integer value to binary | |
main(){ | |
int n, count; | |
//array of small letters | |
char sletter[27] = "abcdefghijklmnopqrstuvwxyz"; | |
//array of big letters |